@shipengine/elements 1.0.0 → 1.1.1

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 (43) hide show
  1. package/README.md +15 -0
  2. package/index.cjs +2868 -3267
  3. package/index.js +2868 -3270
  4. package/package.json +6 -2
  5. package/src/components/carrier-icon/carrier-icon.d.ts +13 -0
  6. package/src/components/carrier-icon/index.d.ts +1 -0
  7. package/src/components/collapsible-panel/collapsible-panel.styles.d.ts +1 -1
  8. package/src/components/display-term/display-term.styles.d.ts +2 -2
  9. package/src/components/grid-controller/cell-formatted-date.d.ts +4 -0
  10. package/src/components/grid-controller/grid-controller.d.ts +22 -0
  11. package/src/components/grid-controller/grid-controller.styles.d.ts +61 -0
  12. package/src/components/grid-controller/hooks/use-grid.d.ts +43 -0
  13. package/src/components/grid-controller/index.d.ts +2 -0
  14. package/src/components/history/history-card-extension/history-card-extension.styles.d.ts +2 -2
  15. package/src/components/index.d.ts +2 -0
  16. package/src/components/label-layout/label-layout.styles.d.ts +8 -5
  17. package/src/components/powered-by-shipengine/powered-by-shipengine.styles.d.ts +2 -2
  18. package/src/components/save-status/save-status-styles.d.ts +4 -9
  19. package/src/components/section/section.d.ts +2 -2
  20. package/src/components/templates/connect-carrier/connect-carrier.d.ts +1 -0
  21. package/src/components/templates/connect-carrier/connect-carrier.styles.d.ts +1 -0
  22. package/src/components/templates/connect-carrier/index.d.ts +1 -0
  23. package/src/components/templates/connect-carrier-form/connect-carrier-form.d.ts +4 -0
  24. package/src/components/templates/connect-carrier-form/connect-carrier-form.styles.d.ts +60 -0
  25. package/src/components/templates/connect-carrier-form/index.d.ts +1 -0
  26. package/src/components/templates/display-carrier-terms/display-carrier-terms.styles.d.ts +2 -2
  27. package/src/components/templates/shipments-grid/index.d.ts +1 -0
  28. package/src/components/templates/shipments-grid/shipments-grid.d.ts +14 -0
  29. package/src/elements/account-settings/account-settings.d.ts +13 -7
  30. package/src/elements/configure-shipment/hooks/use-rates-form.d.ts +1 -1
  31. package/src/elements/connect-carrier/connect-carrier.d.ts +685 -0
  32. package/src/elements/connect-carrier/index.d.ts +1 -0
  33. package/src/elements/labels-grid/index.d.ts +1 -0
  34. package/src/elements/labels-grid/labels-grid.d.ts +687 -0
  35. package/src/elements/purchase-label/purchase-label.d.ts +20 -2
  36. package/src/elements/shipments-grid/index.d.ts +1 -0
  37. package/src/elements/shipments-grid/shipmets-grid.d.ts +1 -0
  38. package/src/elements/view-shipment/view-shipment.d.ts +17 -1
  39. package/src/elements/void-label/void-label.d.ts +13 -6
  40. package/src/features/wallet-history/wallet-history.styles.d.ts +2 -2
  41. package/src/locales/en/index.d.ts +13 -0
  42. package/src/workflows/onboarding/components/carrier-recovery-form/carrier-recovery-form-schema.d.ts +29 -29
  43. package/src/workflows/onboarding/onboarding.d.ts +55 -2
@@ -0,0 +1,687 @@
1
+ import { Label } from "@shipengine/alchemy";
2
+ type ComponentProps = {
3
+ onRowClick: (data: Label) => void;
4
+ };
5
+ export declare const Element: ({ resources, ...props }: ComponentProps & {
6
+ resources?: {
7
+ en: {
8
+ "wallet-history": {
9
+ actions: {
10
+ downloadCsv: string;
11
+ chooseDate: string;
12
+ };
13
+ dateRange: string;
14
+ historyOptions: {
15
+ custom: string;
16
+ last30days: string;
17
+ thisMonth: string;
18
+ lastMonth: string;
19
+ };
20
+ };
21
+ "void-label": {
22
+ title: string;
23
+ actions: {
24
+ complete: string;
25
+ confirmVoid: string;
26
+ viewShipment: string;
27
+ };
28
+ errorMessages: {
29
+ labelIdRequired: string;
30
+ };
31
+ resultMessages: {
32
+ approved: string;
33
+ rejected: string;
34
+ };
35
+ refund_process: string;
36
+ refund_rules: string;
37
+ resultTitles: {
38
+ approved: string;
39
+ rejected: string;
40
+ };
41
+ voidedOn: string;
42
+ };
43
+ "view-shipment": {
44
+ title: string;
45
+ actions: {
46
+ buyAnotherLabel: string;
47
+ hideItems: string;
48
+ printForms: string;
49
+ printLabel: string;
50
+ schedulePickup: string;
51
+ showItems: string;
52
+ void: string;
53
+ };
54
+ fields: {
55
+ dimensions: string;
56
+ estimatedShipping: string;
57
+ items: string;
58
+ orderDate: string;
59
+ orderValue: string;
60
+ requestedShipping: string;
61
+ shipDate: string;
62
+ shipTo: string;
63
+ warehouse: string;
64
+ weight: string;
65
+ insuredValue: string;
66
+ deliveryConfirmation: string;
67
+ };
68
+ highVolumeForms: string;
69
+ multipleShippingServices: string;
70
+ sections: {
71
+ labels: string;
72
+ };
73
+ noLabels: string;
74
+ };
75
+ "register-wallet": {
76
+ sections: {
77
+ setup: {
78
+ title: string;
79
+ subtitle: string;
80
+ descriptionTitle: string;
81
+ description: string;
82
+ };
83
+ billing: {
84
+ title: string;
85
+ cardSubTitle: string;
86
+ addressSubTitle: string;
87
+ info: string;
88
+ };
89
+ carriers: {
90
+ title: string;
91
+ subtitle: string;
92
+ };
93
+ notifications: {
94
+ error: {
95
+ title: string;
96
+ };
97
+ info: {
98
+ title: string;
99
+ description: string;
100
+ };
101
+ poBox: {
102
+ title: string;
103
+ description: string;
104
+ };
105
+ carrier: {
106
+ title: string;
107
+ confirmAddress: string;
108
+ description: string;
109
+ };
110
+ blackBox: {
111
+ description: string;
112
+ };
113
+ };
114
+ };
115
+ settings: {
116
+ title: string;
117
+ billing: {
118
+ title: string;
119
+ subtitleCard: string;
120
+ subtitleBilling: string;
121
+ };
122
+ };
123
+ };
124
+ "register-carrier": {
125
+ formTitle: string;
126
+ agreeToTerms: string;
127
+ };
128
+ "purchase-label": {
129
+ title: string;
130
+ actions: {
131
+ calculateRates_one: string;
132
+ calculateRates_other: string;
133
+ hideItems: string;
134
+ purchaseLabel: string;
135
+ purchaseNow: string;
136
+ showItems: string;
137
+ showMoreRates: string;
138
+ showFewerRates: string;
139
+ saveRate: string;
140
+ };
141
+ balance: {
142
+ currentBalance: string;
143
+ insufficientBalanceCTA: string;
144
+ };
145
+ cta: {
146
+ addPackageDetails: string;
147
+ };
148
+ errorMessages: {
149
+ customsItemsRequired: string;
150
+ invalidAddress: string;
151
+ noRates: string;
152
+ salesOrderNotLoaded: string;
153
+ unsupportedAddress: string;
154
+ saveRateFailedMessage: string;
155
+ saveRateFailedTitle: string;
156
+ };
157
+ errorTypes: {
158
+ results: string;
159
+ };
160
+ fields: {
161
+ "requires-additional-handling": string;
162
+ addOns: string;
163
+ contentDescription: string;
164
+ confirmation: string;
165
+ dimensions: {
166
+ length: string;
167
+ width: string;
168
+ height: string;
169
+ };
170
+ dimensionsGroup: string;
171
+ estimatedShipping: string;
172
+ insurance: string;
173
+ insuranceProvider: string;
174
+ insuredValue: string;
175
+ items: string;
176
+ orderDate: string;
177
+ orderValue: string;
178
+ packageCode: string;
179
+ requestedShipping: string;
180
+ shipDate: string;
181
+ service: string;
182
+ shipTo: string;
183
+ addShipToAddress: string;
184
+ warehouse: string;
185
+ weight: {
186
+ whole: string;
187
+ fractional: string;
188
+ };
189
+ weightGroup: string;
190
+ today: string;
191
+ };
192
+ hints: {
193
+ contentDescription: string;
194
+ };
195
+ loading: {
196
+ calculatingRates: string;
197
+ };
198
+ modes: {
199
+ browseRates: string;
200
+ selectService: string;
201
+ };
202
+ multipleShippingServices: string;
203
+ schemaErrors: {
204
+ shipFromUnitedStatesOnly: string;
205
+ shipFromAddressRequired: string;
206
+ needToAcknowledge: string;
207
+ };
208
+ rates: {
209
+ uspsMediaMailAcknowledgement: string;
210
+ uspsFirstClassMailAcknowledgement_leof: string;
211
+ rateSavings: string;
212
+ upsGroundSaverTermsAcknowledgement: string;
213
+ dhlExpressTermsAcknowledgement: string;
214
+ };
215
+ requirements: {
216
+ noWarehouse: string;
217
+ noCarrier: string;
218
+ noWarehouseOrCarrier: string;
219
+ };
220
+ shipToAddressFormFields: string;
221
+ sections: {
222
+ customsForm: string;
223
+ shipment: string;
224
+ rate_one: string;
225
+ rate_other: string;
226
+ payment: string;
227
+ };
228
+ };
229
+ "payment-method": {
230
+ title: string;
231
+ };
232
+ onboarding: {
233
+ title: string;
234
+ inlineTitle: string;
235
+ accountRegistration: {
236
+ action: string;
237
+ title: string;
238
+ subtitle: string;
239
+ welcome: string;
240
+ messageLine1: string;
241
+ partnerMessageLine1: string;
242
+ messageLine2: string;
243
+ };
244
+ stepLabel: {
245
+ accountRegistration: string;
246
+ termsAgreement: string;
247
+ shipFromAddress: string;
248
+ fundingAndCarrierConnection: string;
249
+ };
250
+ warehouse: {
251
+ title: string;
252
+ subtitle: string;
253
+ inlineMessage: string;
254
+ };
255
+ success: {
256
+ title: string;
257
+ subtitle: string;
258
+ action: string;
259
+ };
260
+ termsAndAgreementLinkText: {
261
+ aHR0cHM6Ly9teWRobC5leHByZXNzLmRobC91cy9lbi9sZWdhbC90ZXJtcy1hbmQtY29uZGl0aW9ucy5odG1s: string;
262
+ "aHR0cHM6Ly93d3cuc3RhbXBzLmNvbS9wcml2YWN5LXBvbGljeQ==": string;
263
+ "aHR0cHM6Ly93d3cuc3RhbXBzLmNvbS9jb25kaXRpb25zLw==": string;
264
+ "aHR0cHM6Ly93d3cudXBzLmNvbS91cy9lbi9zdXBwb3J0L3NoaXBwaW5nLXN1cHBvcnQvc2hpcHBpbmctc3BlY2lhbC1jYXJlLXJlZ3VsYXRlZC1pdGVtcy9wcm9oaWJpdGVkLWl0ZW1zLnBhZ2U=": string;
265
+ aHR0cHM6Ly93d3cudXBzLmNvbS9hc3NldHMvcmVzb3VyY2VzL21lZGlhL2VuX1VTL1VQU19EQVBfVEMucGRm: string;
266
+ "aHR0cHM6Ly93d3cudXBzLmNvbS9hc3NldHMvcmVzb3VyY2VzL21lZGlhL2VuX1VTL1VUQS5wZGY=": string;
267
+ "aHR0cHM6Ly93d3cuZXZyaS5jb20vdGVybXMtYW5kLWNvbmRpdGlvbnM=": string;
268
+ "aHR0cHM6Ly93d3cueW9kZWxkaXJlY3QuY28udWsvY29udGVudC9hYm91dC10ZXJtcw==": string;
269
+ aHR0cHM6Ly93d3cuc2hpcHN0YXRpb24uY29tL3Rlcm1zLXNlcnZpY2UtdW5pdGVkLWtpbmdkb20v: string;
270
+ };
271
+ termsAndAgreementTitles: {
272
+ "WW9kZWwgRGlyZWN0IC0gVGVybXMgYW5kIENvbmRpdGlvbnMgKOKAnFRlcm1z4oCdKQ==": string;
273
+ "RXZyaSBTZW5kIFRlcm1zICYgQ29uZGl0aW9ucw==": string;
274
+ "VGVybXMgb2YgU2VydmljZSBVbml0ZWQgS2luZ2RvbQ==": string;
275
+ };
276
+ };
277
+ "manage-defaults": {
278
+ label: {
279
+ title: string;
280
+ letter: {
281
+ title: string;
282
+ description: string;
283
+ };
284
+ purchase: {
285
+ title: string;
286
+ description: string;
287
+ };
288
+ thermal: {
289
+ title: string;
290
+ description: string;
291
+ };
292
+ };
293
+ status: {
294
+ saving: string;
295
+ saved: string;
296
+ savingFailed: string;
297
+ };
298
+ units: {
299
+ title: string;
300
+ dimensions: {
301
+ title: string;
302
+ standard: string;
303
+ metric: string;
304
+ };
305
+ weight: {
306
+ title: string;
307
+ standard: string;
308
+ g: string;
309
+ kg: string;
310
+ };
311
+ };
312
+ };
313
+ "manage-warehouses": {
314
+ title: string;
315
+ addNew: string;
316
+ editWarehouse: string;
317
+ contactName: string;
318
+ default: string;
319
+ isDefault: string;
320
+ locationName: string;
321
+ residentialAddress: string;
322
+ returnTo: string;
323
+ returnToAddressIsDifferent: string;
324
+ setDefault: string;
325
+ shipFrom: string;
326
+ };
327
+ "manage-funding": {
328
+ actions: {
329
+ addFunds: string;
330
+ addFundsAndPurchase: string;
331
+ addNow: string;
332
+ saveRule: string;
333
+ };
334
+ autoFunding: {
335
+ edit: string;
336
+ editSettings: string;
337
+ error: {
338
+ title: string;
339
+ message: string;
340
+ };
341
+ isEnabledCTA: string;
342
+ isEnabled: string;
343
+ isLoading: string;
344
+ lowBalancePurchaseThreshold: string;
345
+ maximumPurchasesPerDay: string;
346
+ purchaseAmount: string;
347
+ readSettings: string;
348
+ };
349
+ addFunds: {
350
+ custom: string;
351
+ error: {
352
+ title: string;
353
+ message: string;
354
+ };
355
+ isLoading: string;
356
+ labels: {
357
+ amount: string;
358
+ };
359
+ minimumPurchaseAmount: string;
360
+ other: string;
361
+ };
362
+ fundAndPurchase: {
363
+ finalBalance: string;
364
+ insufficientFunds: string;
365
+ insufficientFundsTitle: string;
366
+ negativeBalance: string;
367
+ negativeBalanceTitle: string;
368
+ newBalance: string;
369
+ };
370
+ errors: {
371
+ balanceUnknown: string;
372
+ unableToFindBalance: string;
373
+ };
374
+ currentBalance: string;
375
+ maximumBalanceAmount: string;
376
+ };
377
+ "list-carriers": {
378
+ title: string;
379
+ headers: {
380
+ accountCarriers: string;
381
+ carriers: string;
382
+ settings: string;
383
+ };
384
+ actions: {
385
+ status: {
386
+ connected: string;
387
+ notConnected: string;
388
+ };
389
+ };
390
+ };
391
+ common: {
392
+ actions: {
393
+ add: string;
394
+ cancel: string;
395
+ close: string;
396
+ confirm: string;
397
+ connect: string;
398
+ continue: string;
399
+ delete: string;
400
+ edit: string;
401
+ hide: string;
402
+ parse: string;
403
+ purchase: string;
404
+ remove: string;
405
+ save: string;
406
+ skipForNow: string;
407
+ submit: string;
408
+ tryAgain: string;
409
+ };
410
+ address: {
411
+ fields: {
412
+ name: string;
413
+ company: string;
414
+ county: string;
415
+ countryCode: string;
416
+ addressLine1: string;
417
+ addressLine2: string;
418
+ cityLocality: string;
419
+ stateProvince: string;
420
+ postalCode: string;
421
+ phone: string;
422
+ email: string;
423
+ addressResidentialIndicator: string;
424
+ };
425
+ noResults: string;
426
+ subFields: {
427
+ optional: string;
428
+ };
429
+ parserFields: {
430
+ fullAddress: string;
431
+ };
432
+ paste: string;
433
+ preference: {
434
+ confirm: string;
435
+ addressNotValidated: string;
436
+ modified: string;
437
+ title: string;
438
+ originalAddress: string;
439
+ matchedAddress: string;
440
+ unableToValidate: string;
441
+ use: {
442
+ originalAddress: string;
443
+ matchedAddress: string;
444
+ };
445
+ };
446
+ validation: {
447
+ notValidated: string;
448
+ validated: string;
449
+ };
450
+ };
451
+ billing: {
452
+ fields: {
453
+ differentBillingAddress: string;
454
+ name: string;
455
+ cardNumber: string;
456
+ expiration: string;
457
+ cvv: string;
458
+ cvvPlaceholder: string;
459
+ expirationPlaceholder: string;
460
+ cardNumberPlaceholder: string;
461
+ };
462
+ };
463
+ carriers: {
464
+ fields: {
465
+ agreement: string;
466
+ };
467
+ terms: {
468
+ agreeToTerms: string;
469
+ title: string;
470
+ };
471
+ };
472
+ charsetWarnings: {
473
+ name: {
474
+ message: string;
475
+ };
476
+ address: {
477
+ message: string;
478
+ title: string;
479
+ };
480
+ };
481
+ confirmationTypes: {
482
+ adultSignature: string;
483
+ delivery: string;
484
+ deliveryMailed: string;
485
+ directSignature: string;
486
+ none: string;
487
+ signature: string;
488
+ verbalConfirmation: string;
489
+ };
490
+ customs: {
491
+ addDeclaration: string;
492
+ contents: {
493
+ documents: string;
494
+ gift: string;
495
+ merchandise: string;
496
+ returnedGoods: string;
497
+ sample: string;
498
+ };
499
+ declarations: string;
500
+ each: string;
501
+ fields: {
502
+ contentsType: string;
503
+ countryOfOrigin: string;
504
+ description: string;
505
+ harmonizedTariffCode: string;
506
+ ifDeliveryFails: string;
507
+ quantity: string;
508
+ sku: string;
509
+ value: string;
510
+ valueQuantity: string;
511
+ };
512
+ nonDelivery: {
513
+ returnToSender: string;
514
+ treatAsAbandoned: string;
515
+ };
516
+ removeAllDeclarations: string;
517
+ total: string;
518
+ };
519
+ errorMessages: {
520
+ invalidNameOrCompany: string;
521
+ parsingFailure: string;
522
+ incompleteLabelPurchaseRequirements: string;
523
+ shipmentCancelled: string;
524
+ unableToLoad: {
525
+ accountSettings: string;
526
+ autoFundingSettings: string;
527
+ carrier: string;
528
+ carriers: string;
529
+ fundingSourceMetadata: string;
530
+ label: string;
531
+ salesOrder: string;
532
+ shipment: string;
533
+ warehouses: string;
534
+ };
535
+ unknown: string;
536
+ noRatesAvailable: string;
537
+ };
538
+ errorTypes: {
539
+ accountStatus: string;
540
+ businessRules: string;
541
+ integrations: string;
542
+ purchase: string;
543
+ rateInvalid: string;
544
+ saveRate: string;
545
+ security: string;
546
+ shipmentStatus: string;
547
+ system: string;
548
+ unknown: string;
549
+ validation: string;
550
+ };
551
+ grid: {
552
+ "row-count_one": string;
553
+ "row-count_other": string;
554
+ rows: string;
555
+ };
556
+ insuranceProviders: {
557
+ carrier: string;
558
+ none: string;
559
+ shipsurance: string;
560
+ thirdParty: string;
561
+ };
562
+ loading: {
563
+ accountSettings: string;
564
+ carrier: string;
565
+ carriers: string;
566
+ connectingCarriers: string;
567
+ creatingFundingSource: string;
568
+ data: string;
569
+ importingSalesOrder: string;
570
+ label: string;
571
+ onboarding: string;
572
+ salesOrder: string;
573
+ shipment: string;
574
+ warehouses: string;
575
+ };
576
+ months: {
577
+ january: string;
578
+ february: string;
579
+ march: string;
580
+ april: string;
581
+ may: string;
582
+ june: string;
583
+ july: string;
584
+ august: string;
585
+ september: string;
586
+ october: string;
587
+ november: string;
588
+ december: string;
589
+ };
590
+ packageCategories: {
591
+ customPackages: string;
592
+ };
593
+ packageCodes: {
594
+ package: string;
595
+ };
596
+ "powered-by": string;
597
+ schema: {
598
+ optionalLabel: string;
599
+ };
600
+ required: string;
601
+ schemaErrors: {
602
+ notAValidPhoneNumber: string;
603
+ mustAgreeToTerms: string;
604
+ group: {
605
+ allMeasurementsOrNone: string;
606
+ };
607
+ invalidAddressName: string;
608
+ invalidAddressNameStrict: string;
609
+ invalidAddressPoBox: string;
610
+ invalidCreditCardType: string;
611
+ invalidExpirationDate: string;
612
+ invalidPostalCode: string;
613
+ invalidStateProvince: string;
614
+ invalidString: string;
615
+ nonnegative: string;
616
+ nonnegativeList: string;
617
+ positive: string;
618
+ positiveList: string;
619
+ required: string;
620
+ requiredList: string;
621
+ tooFewCharacters: string;
622
+ tooManyCharacters: string;
623
+ };
624
+ shippingPresets: {
625
+ apply: string;
626
+ platform: string;
627
+ user: string;
628
+ };
629
+ terms: {
630
+ fields: {
631
+ agreement: string;
632
+ };
633
+ agreeToTerms: string;
634
+ carriersTitle: string;
635
+ fundingSourceTitle: string;
636
+ };
637
+ weight: {
638
+ ounces: string;
639
+ pounds_one: string;
640
+ pounds_other: string;
641
+ kilogram: string;
642
+ gram: string;
643
+ };
644
+ units: {
645
+ inch: string;
646
+ lbs: string;
647
+ oz: string;
648
+ centimeter: string;
649
+ gram: string;
650
+ kilogram: string;
651
+ };
652
+ T25seSByZXNpZGVudGlhbCBkZWxpdmVyeSBhZGRyZXNzZXMgYXJlIGFsbG93ZWQgZm9yIFVQUyBHcm91bmQgU2F2ZXIu: string;
653
+ "VGhlIHNlbGVjdGVkIHNlcnZpY2UgaW5jbHVkZXMgaW5zdXJhbmNlIGZvciBhbiBpbnN1cmVkIGFtb3VudCB1cCB0byAkMTAwLgo=": string;
654
+ "VGhlIHNlbGVjdGVkIHNlcnZpY2UgaW5jbHVkZXMgaW5zdXJhbmNlIGZvciBhbiBpbnN1cmVkIGFtb3VudCB1cCB0byAkNTAuCg==": string;
655
+ QSBzaGlwcGluZyBjYXJyaWVyIGVycm9yIG9jY3VycmVkOiBJbnN1ZmZpY2llbnQgYWNjb3VudCBiYWxhbmNlLiBBY2NvdW50IGV4Y2VwdGlvbiBFeGNlcHRpb24gd2l0aCBjb2RlIDB4MDA1NjAxMDE7IG1vZHVsZSA4NiwgY2F0ZWdvcnkgMSwgaXRlbSAx: string;
656
+ "QWRkcmVzcyBub3QgZm91bmQ=": string;
657
+ QSBzaGlwcGluZyBjYXJyaWVyIGVycm9yIG9jY3VycmVkOiBVUFMgd2VpZ2h0IGxpbWl0IHBlciBwYWNrYWdlIGlzIDE1MCBsYnMu: string;
658
+ UGxlYXNlIGFkZCBhIFN0YW1wcy5jb20gYWNjb3VudCB0byBTaGlwRW5naW5lIGluIG9yZGVyIHRvIGNyZWF0ZSBzaGlwcGluZyBsYWJlbHMu: string;
659
+ QSBzaGlwcGluZyBlcnJvciBvY2N1cnJlZDogTWlzc2luZyBvciBpbnZhbGlkIHNoaXBwZXIgbnVtYmVy: string;
660
+ QSBzaGlwcGluZyBjYXJyaWVyIGVycm9yIG9jY3VycmVkOiBNaXNzaW5nIG9yIGludmFsaWQgc2hpcHBlciBuYW1l: string;
661
+ "QSBzaGlwcGluZyBjYXJyaWVyIGVycm9yIG9jY3VycmVkOiBNaXNzaW5nIG9yIGludmFsaWQgc2hpcCB0byBTdGF0ZVByb3ZpbmNlQ29kZQ==": string;
662
+ "QSBzaGlwcGluZyBjYXJyaWVyIGVycm9yIG9jY3VycmVkOiBJbnZhbGlkIHNvbGQgdG8gc3RhdGUgcHJvdmluY2UgY29kZS4gVmFsaWQgbGVuZ3RoIGlzIDAgdG8gNSBhbHBoYW51bWVyaWM=": string;
663
+ };
664
+ "connect-carrier": {
665
+ registrationForm: {
666
+ title: string;
667
+ isLoading: string;
668
+ betaWarning: string;
669
+ };
670
+ };
671
+ "account-settings": {
672
+ title: string;
673
+ sections: {
674
+ accountBalance: string;
675
+ paymentMethod: string;
676
+ transactionHistory: string;
677
+ adjustmentHistory: string;
678
+ warehouses: string;
679
+ carriers: string;
680
+ labelLayout: string;
681
+ unitSettings: string;
682
+ };
683
+ };
684
+ };
685
+ } | undefined;
686
+ }) => import("@emotion/react/jsx-runtime").JSX.Element;
687
+ export {};