@thryveai/theme-interfaces 2.8.25 → 2.8.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (67) hide show
  1. package/dist/JSONSchemas/index.d.ts +6072 -0
  2. package/dist/JSONSchemas/index.js +8228 -0
  3. package/dist/index.d.ts +43 -0
  4. package/dist/index.js +45 -0
  5. package/dist/interfaces/admin-images-interfaces.d.ts +11 -0
  6. package/dist/interfaces/admin-images-interfaces.js +2 -0
  7. package/dist/interfaces/admin-settings-interfaces.d.ts +73 -0
  8. package/dist/interfaces/admin-settings-interfaces.js +2 -0
  9. package/dist/interfaces/default-settings.interfaces.d.ts +17 -0
  10. package/dist/interfaces/default-settings.interfaces.js +2 -0
  11. package/dist/interfaces/default-theme.interface.d.ts +804 -0
  12. package/dist/interfaces/default-theme.interface.js +2 -0
  13. package/dist/interfaces/icons.interfaces.d.ts +10 -0
  14. package/dist/interfaces/icons.interfaces.js +2 -0
  15. package/dist/interfaces/retailer-settings.interfaces.d.ts +785 -0
  16. package/dist/interfaces/retailer-settings.interfaces.js +2 -0
  17. package/dist/interfaces/shared-settings-interfaces.d.ts +7 -0
  18. package/dist/interfaces/shared-settings-interfaces.js +2 -0
  19. package/dist/interfaces/shared-settings.interfaces.d.ts +76 -0
  20. package/dist/interfaces/shared-settings.interfaces.js +2 -0
  21. package/dist/interfaces/sts-settings.interfaces.d.ts +6 -0
  22. package/dist/interfaces/sts-settings.interfaces.js +2 -0
  23. package/dist/interfaces/theme.interfaces.d.ts +717 -0
  24. package/dist/interfaces/theme.interfaces.js +2 -0
  25. package/dist/mobile/interfaces/mobile-admin-settings.interfaces.d.ts +8 -0
  26. package/dist/mobile/interfaces/mobile-admin-settings.interfaces.js +2 -0
  27. package/dist/mobile/interfaces/mobile-retailer-settings.interfaces.d.ts +69 -0
  28. package/dist/mobile/interfaces/mobile-retailer-settings.interfaces.js +2 -0
  29. package/dist/mobile/reactnative/MobileDefaultSettings.d.ts +6 -0
  30. package/dist/mobile/reactnative/MobileDefaultSettings.js +28 -0
  31. package/dist/mobile/reactnative/MobileSettingsTemplate.AdminUi.d.ts +2 -0
  32. package/dist/mobile/reactnative/MobileSettingsTemplate.AdminUi.js +108 -0
  33. package/dist/storefront/SFUIImagesTemplate.AdminUi.d.ts +2 -0
  34. package/dist/storefront/SFUIImagesTemplate.AdminUi.js +112 -0
  35. package/dist/storefront/SFUISettingsTemplate.AdminUi.d.ts +16 -0
  36. package/dist/storefront/SFUISettingsTemplate.AdminUi.js +1128 -0
  37. package/dist/storefront/SFUISharedSettingsTemplate.AdminUi.d.ts +4 -0
  38. package/dist/storefront/SFUISharedSettingsTemplate.AdminUi.js +194 -0
  39. package/dist/storefront/SFUIThemesTemplate.AdminUi.d.ts +3 -0
  40. package/dist/storefront/SFUIThemesTemplate.AdminUi.js +113 -0
  41. package/dist/storefront/commonSettingsStorefront.d.ts +3 -0
  42. package/dist/storefront/commonSettingsStorefront.js +445 -0
  43. package/dist/storefront/commonSharedSettings.d.ts +3 -0
  44. package/dist/storefront/commonSharedSettings.js +59 -0
  45. package/dist/storefront/contentEngineComponents.d.ts +26 -0
  46. package/dist/storefront/contentEngineComponents.js +28 -0
  47. package/dist/storefront/defaultIconsStorefront.d.ts +3 -0
  48. package/dist/storefront/defaultIconsStorefront.js +4 -0
  49. package/dist/storefront/defaultImagesStorefront.d.ts +3 -0
  50. package/dist/storefront/defaultImagesStorefront.js +100 -0
  51. package/dist/storefront/defaultSettingsStorefront.d.ts +3 -0
  52. package/dist/storefront/defaultSettingsStorefront.js +445 -0
  53. package/dist/storefront/defaultSharedSettings.d.ts +3 -0
  54. package/dist/storefront/defaultSharedSettings.js +59 -0
  55. package/dist/storefront/defaultThemeStorefront.d.ts +5 -0
  56. package/dist/storefront/defaultThemeStorefront.js +1290 -0
  57. package/dist/storefront/productBadgeAttributes.d.ts +6 -0
  58. package/dist/storefront/productBadgeAttributes.js +45 -0
  59. package/dist/sts/STSImagesTemplate.AdminUi.d.ts +2 -0
  60. package/dist/sts/STSImagesTemplate.AdminUi.js +72 -0
  61. package/dist/sts/STSSettingsTemplate.AdminUi.d.ts +2 -0
  62. package/dist/sts/STSSettingsTemplate.AdminUi.js +30 -0
  63. package/dist/sts/defaultSettingsSts.d.ts +3 -0
  64. package/dist/sts/defaultSettingsSts.js +9 -0
  65. package/dist/theme-templates/index.d.ts +3 -0
  66. package/dist/theme-templates/index.js +8 -0
  67. package/package.json +1 -1
@@ -0,0 +1,445 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ var CommonConfigSFUI = {
4
+ accountPage: {
5
+ idp: {
6
+ enabled: false,
7
+ target: "_self",
8
+ url: "",
9
+ },
10
+ loyaltyTab: {
11
+ barcodeSettings: {
12
+ enabled: false,
13
+ },
14
+ disabledEdit: false,
15
+ enabled: false,
16
+ loyaltyNumberLength: 11,
17
+ loyaltyNumberPrefix: "",
18
+ loyaltyValidationType: [],
19
+ },
20
+ profileTab: {
21
+ deleteAccountButton: false,
22
+ },
23
+ secondStepRegistration: {
24
+ businessAccount: {
25
+ enabled: false,
26
+ fields: {
27
+ company: {
28
+ enabled: true,
29
+ validationTypes: [{ length: 50, _type: "less" }, "required"],
30
+ },
31
+ typeOfBusiness: {
32
+ enabled: true,
33
+ options: [
34
+ "administrationOffice",
35
+ "education",
36
+ "foodService",
37
+ "nonProfit",
38
+ "youthSports",
39
+ ],
40
+ validationTypes: ["required"],
41
+ },
42
+ title: {
43
+ enabled: true,
44
+ validationTypes: [{ length: 50, _type: "less" }, "required"],
45
+ },
46
+ },
47
+ },
48
+ },
49
+ },
50
+ addressSettings: {
51
+ addressValidationTypes: {
52
+ addressLine1: ["alphaNumeric", "required"],
53
+ addressLine2: ["alphaNumeric"],
54
+ city: ["alphaNumeric", "required"],
55
+ countyProvinceState: ["usState", "required"],
56
+ familyName: ["alphaOnly", "required"],
57
+ firstName: ["alphaOnly", "required"],
58
+ instructions: ["alphaNumeric"],
59
+ phoneNumber: ["usPhone", "required"],
60
+ postCode: ["usPostCode", "required"],
61
+ smsNumber: [],
62
+ deliveryModalZipCodeValidation: [],
63
+ },
64
+ eircode: {
65
+ enabled: false,
66
+ url: "",
67
+ },
68
+ integration: {
69
+ addNewAddressUrl: "",
70
+ addressFinderType: "AUS",
71
+ deleteAddressUrl: "",
72
+ editAddressUrl: "",
73
+ enabled: false,
74
+ useForNewAddresses: false,
75
+ addressProfileName: null,
76
+ },
77
+ useAddressValidation: true,
78
+ fixOldAddresses: true,
79
+ },
80
+ adminPanelOnly: {
81
+ bannerName: "New banner name",
82
+ logoUrl: "https://wynshop.com/wp-content/uploads/2021/08/xWynshop_Font_logo_150x39.png.pagespeed.ic.3j0jIxPBvP.webp 1x",
83
+ },
84
+ cartSummary: {
85
+ hideTaxOnSummary: false,
86
+ showTaxGroups: true,
87
+ showTaxTotal: true,
88
+ },
89
+ checkout: {
90
+ smsOptIn: false,
91
+ checkoutValidation: {
92
+ instructions: ["alphaNumeric", "notWhiteSpacesOnly"],
93
+ phoneNumber: ["usPhone", "required"],
94
+ smsNumber: [],
95
+ },
96
+ houseAccountRegExValidation: ".",
97
+ minimumCreditCardAmount: 1.0,
98
+ numericPhonePayload: false,
99
+ nativePayments: {
100
+ googlePayButton: {
101
+ buttonColor: "default",
102
+ buttonType: "checkout",
103
+ buttonRadius: 4,
104
+ },
105
+ },
106
+ paymentCards: {
107
+ AmExpCard: true,
108
+ DiscoverCard: true,
109
+ MasterCard: true,
110
+ MasterCardDebit: true,
111
+ VisaCard: true,
112
+ VisaDebit: false,
113
+ PayPal: false,
114
+ ApplePay: false,
115
+ GooglePay: false,
116
+ EBT: false,
117
+ Paze: false,
118
+ },
119
+ forceDeliverySection: false,
120
+ enableInterimModal: false,
121
+ },
122
+ features: {
123
+ additionalCharges: false,
124
+ creditBalance: false,
125
+ subscriptions: false,
126
+ addressIntegrationV2: false,
127
+ advertSettings: {},
128
+ allowInStorePurchases: false,
129
+ allowPastPurchases: true,
130
+ clientCache: false,
131
+ couponGallery: {
132
+ enabled: false,
133
+ galleryHasNavLink: false,
134
+ galleryIsIframe: false,
135
+ },
136
+ ebtPayments: false,
137
+ emailCartOrShoppingList: { enabled: true, messageField: true },
138
+ googleTranslateWidget: {
139
+ enabled: false,
140
+ position: "footer",
141
+ headerLayout: {
142
+ mobile: "horizontal",
143
+ desktop: "horizontal",
144
+ },
145
+ },
146
+ enableNewsletterSignup: false,
147
+ enableNotifications: false,
148
+ enableRecipeSearch: true,
149
+ entryModalVersion: "entry",
150
+ externalStoreSelectorUrl: {
151
+ enabled: false,
152
+ url: "",
153
+ },
154
+ favoritesV1: true,
155
+ flyerConfiguration: null,
156
+ giftCards: {
157
+ enabled: false,
158
+ giftCardInputValidation: "^[0-9]{17}$",
159
+ pinInputValidation: "^[0-9]{4}$",
160
+ reCaptcha: false,
161
+ },
162
+ globalAnimations: {
163
+ confetti: {
164
+ enableConfettiAnimation: true,
165
+ },
166
+ },
167
+ hideAlcoholRule: {
168
+ modal: false,
169
+ pdp: false,
170
+ productCard: false,
171
+ cart: false,
172
+ },
173
+ instacart: {
174
+ enabled: false,
175
+ url: "",
176
+ },
177
+ recipeLegacyShareLink: true,
178
+ registrationFields: [],
179
+ secondTierAuthorization: undefined,
180
+ shoppingModesDisplayOrder: [],
181
+ showCheckoutPromoCode: true,
182
+ showImgOnOrder: false,
183
+ showRewardPromoChangeTimeslotMsg: false,
184
+ smartbanner: {
185
+ author: "",
186
+ button: "",
187
+ buttonUrlApple: "",
188
+ buttonUrlGoogle: "",
189
+ closeLabel: "",
190
+ enabled: true,
191
+ iconApple: "",
192
+ iconGoogle: "",
193
+ price: "",
194
+ priceSuffixApple: "",
195
+ priceSuffixGoogle: "",
196
+ title: "",
197
+ },
198
+ smsNotifications: {
199
+ enabled: false,
200
+ getEnrollmentUrl: "",
201
+ postEnrollmentUrl: "",
202
+ },
203
+ specialRequestItems: false,
204
+ vouchers: {
205
+ enabled: false,
206
+ reCaptcha: false,
207
+ manualVouchers: true,
208
+ },
209
+ promotionDetailsPage: {
210
+ bundlePromotionCalculator: true,
211
+ nonBundlePromotionCalculator: true,
212
+ },
213
+ gsaSupportedBrowser: true,
214
+ acquiaAuthService: false,
215
+ storeSelection: {
216
+ pickup: {
217
+ integration: "default",
218
+ },
219
+ planning: {
220
+ integration: "default",
221
+ },
222
+ storeLocator: {
223
+ integration: "default",
224
+ },
225
+ },
226
+ },
227
+ pdpSettings: {
228
+ externalContent: {
229
+ enabled: true,
230
+ contentProviders: [{ provider: "syndigo" }],
231
+ },
232
+ nutritionZone: "us",
233
+ pdpDetailsLayout: {
234
+ desktop: {
235
+ left: [
236
+ "productSalesInfo",
237
+ "productDescription",
238
+ "productIngredients",
239
+ "productNutrition",
240
+ "sodiumWarning",
241
+ "productNumber",
242
+ ],
243
+ right: ["recommendations"],
244
+ },
245
+ mobile: {
246
+ left: [
247
+ "productSalesInfo",
248
+ "productDescription",
249
+ "productNumber",
250
+ "sodiumWarning",
251
+ "recommendations",
252
+ ],
253
+ right: [
254
+ "productIngredients",
255
+ "productNutrition",
256
+ "recommendations",
257
+ "productNumber",
258
+ ],
259
+ },
260
+ },
261
+ sodiumWarning: {
262
+ isEnabled: false,
263
+ threshold: 2300,
264
+ },
265
+ productAttributesLayout: {
266
+ attributesRank: [],
267
+ excludedAttributes: [],
268
+ },
269
+ nutritionLink: { href: null, target: "_blank" },
270
+ priceLoyaltyFlag: false,
271
+ },
272
+ productCard: {
273
+ limitProductCardTitleHeight: true,
274
+ productCards: {
275
+ carouselsRowLength: {
276
+ desktop: 6,
277
+ mobile: 1,
278
+ tablet: 4,
279
+ },
280
+ gridRowLength: {
281
+ desktop: 5,
282
+ mobile: 1,
283
+ tablet: 3,
284
+ },
285
+ productCard: {
286
+ enabled: true,
287
+ layouts: {
288
+ ContainersCarousel: "default",
289
+ ContainersGrid: "default",
290
+ FlyerCard: "default",
291
+ SimplifiedCarousel: "default",
292
+ },
293
+ components: {
294
+ promotionLabel: {
295
+ showLines: 1,
296
+ labelSource: "name",
297
+ labelsLimit: 1,
298
+ labelsPriority: [
299
+ { _type: "tprPromo" },
300
+ { _type: "pointPromo", limit: 1 },
301
+ { _type: "promo", limit: 1 },
302
+ ],
303
+ },
304
+ recommendedLabel: { enabled: false },
305
+ productAttributes: {
306
+ iconOpacity: 0.6,
307
+ },
308
+ },
309
+ },
310
+ },
311
+ productCardTitleHeight: 40,
312
+ },
313
+ siteSettings: {
314
+ advertProductView: false,
315
+ clientSideOrderModify: true,
316
+ cmsLazyLoadRows: 0,
317
+ anonymousCart: false,
318
+ ctaButtons: null,
319
+ daysToRemainSignedIn: 30,
320
+ defaultCountry: "USA",
321
+ defaultLanguage: "en-us",
322
+ infinitePagination: false,
323
+ defaultSearchParams: {
324
+ page: "1",
325
+ q: "*",
326
+ skip: "0",
327
+ take: "30",
328
+ },
329
+ defaultShoppingMode: "pickup",
330
+ defaultTabView: "listView",
331
+ showChangeCustomerEmail: false,
332
+ defaultStoreLocation: {
333
+ latitude: 0,
334
+ longitude: 0,
335
+ },
336
+ disableTprPrice: false,
337
+ mobileViewCardLayout: { enabled: false, defaultView: "List" },
338
+ footerVersion: "default",
339
+ googleAutocompleteSettings: {},
340
+ gtmId: "",
341
+ hideWelcomeModalOnCorporate: false,
342
+ isPlanningOnly: false,
343
+ RemoveAllOutOfStock: true,
344
+ mainHeaderHeight: 110,
345
+ maintainCustomerJourney: true,
346
+ maintainCustomerPreferences: {
347
+ enabled: true,
348
+ sections: {
349
+ marketingPreferences: [],
350
+ },
351
+ optInMarketingPreferences: false,
352
+ selectOptInMarketingPreferencesStore: false,
353
+ },
354
+ mapZoom: 8,
355
+ promoTemplateVersion: 1,
356
+ restrictMapPlacesResults: {
357
+ fetchNearStoresSettings: {
358
+ kmRange: 20,
359
+ totalTake: 30,
360
+ },
361
+ },
362
+ retailerCountry: "us",
363
+ retailerName: "default",
364
+ searchPreview: {
365
+ desktop: {
366
+ products: true,
367
+ suggestions: true,
368
+ recipes: true,
369
+ },
370
+ mobile: {
371
+ products: true,
372
+ suggestions: true,
373
+ recipes: true,
374
+ },
375
+ },
376
+ subHeaderHeight: 0,
377
+ timeslotModalSettings: {
378
+ showOnAddToCart: false,
379
+ timeslotRequiredToAddToCart: false,
380
+ timeslotRequiredToViewCartReview: false,
381
+ timeslotRequiredToViewCheckout: false,
382
+ enableSelectToContinueText: false,
383
+ },
384
+ useContentEngineV2Components: {
385
+ Carousel: true,
386
+ ContactUs: false,
387
+ Freeform: false,
388
+ HeroBanner: false,
389
+ Image: false,
390
+ ImageTextButton: false,
391
+ ImageWithContent: false,
392
+ LargePromotion: false,
393
+ LayoutExtraLargeBanner2: false,
394
+ PageTopperWithFullBackground: false,
395
+ ProductCardStory: false,
396
+ Recipe: false,
397
+ Sale: false,
398
+ SmallBannerWithBackgroundImage: false,
399
+ SmallBannerWithSupportingImage: false,
400
+ SmallCarousel: false,
401
+ SmallImageWithContent: false,
402
+ SmallPromotion: false,
403
+ ThreeBannerContainer: false,
404
+ TwoBannerContainer: false,
405
+ Video: false,
406
+ VideoWithContent: false,
407
+ PromotionsGallery: false,
408
+ },
409
+ isLegacyProductURL: false,
410
+ headerLinks: { dimension: 0, enabled: false },
411
+ showCartValueOnMobile: false,
412
+ cookiePro: { enabled: false, domain: "", src: "" },
413
+ scrollToTopButton: {
414
+ enabled: true,
415
+ percentOffset: { bottom: 15, right: 2 },
416
+ visibilityThreshold: 2000,
417
+ },
418
+ clientRenderCoupons: true,
419
+ showClippedStateInCouponModal: false,
420
+ showShopAllLink: {
421
+ enabled: true,
422
+ },
423
+ showEmptyMiniList: false,
424
+ preserveStore: {
425
+ enabled: false,
426
+ skipConfirmation: false,
427
+ confirmationDelay: 5000,
428
+ },
429
+ carousel: {
430
+ showArrowsOnHoverOnly: true,
431
+ },
432
+ },
433
+ welcomeModal: [],
434
+ performance: {
435
+ vouchersLongTimeout: false,
436
+ },
437
+ integrations: {
438
+ prodX: {
439
+ enabled: false,
440
+ catalogId: "",
441
+ test: false,
442
+ },
443
+ },
444
+ };
445
+ exports.default = CommonConfigSFUI;
@@ -0,0 +1,3 @@
1
+ import { ISharedSettings } from "../interfaces/shared-settings.interfaces";
2
+ declare const CommonSharedSettingsConfig: ISharedSettings;
3
+ export default CommonSharedSettingsConfig;
@@ -0,0 +1,59 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ var CommonSharedSettingsConfig = {
4
+ adminPanelOnly: {
5
+ bannerName: "New banner name",
6
+ logoUrl: "https://wynshop.com/wp-content/uploads/2021/08/xWynshop_Font_logo_150x39.png.pagespeed.ic.3j0jIxPBvP.webp 1x",
7
+ },
8
+ features: {
9
+ multilingual: false,
10
+ recommendedSubstitutions: {
11
+ enable: false,
12
+ search: { enable: false },
13
+ stores: [],
14
+ locationId: "",
15
+ enableRecommendationsV2: false,
16
+ },
17
+ specialRequestItems: {
18
+ enable: true,
19
+ excludeStores: [],
20
+ },
21
+ couponGallery: {
22
+ enabled: false,
23
+ showClipAllCouponsButton: false,
24
+ showUnclaimedCouponsPrompt: false,
25
+ missedCouponsButtonInCartURL: "",
26
+ hideSavingsSection: false,
27
+ showRedemptionProductCard: false,
28
+ },
29
+ flyerConfiguration: null,
30
+ ageVerification: {
31
+ ageVerificationPrefix: "",
32
+ ageVerificationStatementName: "",
33
+ },
34
+ ageGateModal: {
35
+ enabled: false,
36
+ redirectUrl: ''
37
+ },
38
+ loyalty: {
39
+ barcodeFormat: "UPC",
40
+ },
41
+ idp: {
42
+ organization: "",
43
+ },
44
+ },
45
+ checkout: {
46
+ preserveOrderNote: {
47
+ enabled: true,
48
+ },
49
+ },
50
+ general: {
51
+ enableStoreSelectorList: true,
52
+ skipStoreSelection: false,
53
+ addressConfirmationModal: false,
54
+ dateOfBirthInputFormat: "DD/MM/YYYY",
55
+ wasComparisonPrice: false,
56
+ enableTargetedRewardsIcon: false,
57
+ },
58
+ };
59
+ exports.default = CommonSharedSettingsConfig;
@@ -0,0 +1,26 @@
1
+ export declare const CMSComponentNames: {
2
+ Carousel: string;
3
+ ContactUs: string;
4
+ Freeform: string;
5
+ HeroBanner: string;
6
+ Image: string;
7
+ ImageTextButton: string;
8
+ ImageWithContent: string;
9
+ LargePromotion: string;
10
+ LayoutExtraLargeBanner2: string;
11
+ PageTopperWithFullBackground: string;
12
+ ProductCardStory: string;
13
+ Recipe: string;
14
+ Sale: string;
15
+ PromotionsGallery: string;
16
+ SmallBannerWithBackgroundImage: string;
17
+ SmallBannerWithSupportingImage: string;
18
+ SmallCarousel: string;
19
+ SmallImageWithContent: string;
20
+ SmallPromotion: string;
21
+ ThreeBannerContainer: string;
22
+ TwoBannerContainer: string;
23
+ Video: string;
24
+ VideoWithContent: string;
25
+ };
26
+ export declare type CMSNames = keyof typeof CMSComponentNames;
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CMSComponentNames = void 0;
4
+ exports.CMSComponentNames = {
5
+ Carousel: "Carousel",
6
+ ContactUs: "ContactUs",
7
+ Freeform: "Freeform",
8
+ HeroBanner: "HeroBanner",
9
+ Image: "Image",
10
+ ImageTextButton: "ImageTextButton",
11
+ ImageWithContent: "StandardContentBlock3",
12
+ LargePromotion: "LargePromotion",
13
+ LayoutExtraLargeBanner2: "LayoutExtraLargeBanner2",
14
+ PageTopperWithFullBackground: "PageTopperWithFullBackground",
15
+ ProductCardStory: "ProductCardStory",
16
+ Recipe: "Recipe",
17
+ Sale: "Sale",
18
+ PromotionsGallery: "PromotionsGallery",
19
+ SmallBannerWithBackgroundImage: "StandardContentBlock1",
20
+ SmallBannerWithSupportingImage: "StandardContentBlock2",
21
+ SmallCarousel: "CarouselSmall",
22
+ SmallImageWithContent: "StackedContentBlock",
23
+ SmallPromotion: "SmallPromotion",
24
+ ThreeBannerContainer: "ThreeBannerContainer",
25
+ TwoBannerContainer: "TwoBannerContainer",
26
+ Video: "Video",
27
+ VideoWithContent: "VideoWithContent",
28
+ };
@@ -0,0 +1,3 @@
1
+ import { IIconsObject } from "../interfaces/icons.interfaces";
2
+ declare const DefaultIconsSFUI: IIconsObject;
3
+ export default DefaultIconsSFUI;