@wf-financing/ui-assets 1.2.1 → 1.2.2

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.
@@ -0,0 +1,1804 @@
1
+ import { z } from 'zod';
2
+
3
+ export declare const SlideoutPanelSchema: z.ZodObject<{
4
+ version: z.ZodString;
5
+ language: z.ZodString;
6
+ cohort: z.ZodString;
7
+ type: z.ZodString;
8
+ } & {
9
+ header: z.ZodString;
10
+ secondaryAction: z.ZodString;
11
+ }, "strip", z.ZodTypeAny, {
12
+ version: string;
13
+ language: string;
14
+ cohort: string;
15
+ type: string;
16
+ header: string;
17
+ secondaryAction: string;
18
+ }, {
19
+ version: string;
20
+ language: string;
21
+ cohort: string;
22
+ type: string;
23
+ header: string;
24
+ secondaryAction: string;
25
+ }>;
26
+ export type SlideoutPanel = z.infer<typeof SlideoutPanelSchema>;
27
+ export declare const ContactDetailsScreenSchema: z.ZodObject<{
28
+ version: z.ZodString;
29
+ language: z.ZodString;
30
+ cohort: z.ZodString;
31
+ type: z.ZodString;
32
+ } & {
33
+ header: z.ZodString;
34
+ text: z.ZodString;
35
+ email: z.ZodObject<{
36
+ label: z.ZodString;
37
+ }, "strip", z.ZodTypeAny, {
38
+ label: string;
39
+ }, {
40
+ label: string;
41
+ }>;
42
+ phoneNumberInput: z.ZodObject<{
43
+ label: z.ZodString;
44
+ }, "strip", z.ZodTypeAny, {
45
+ label: string;
46
+ }, {
47
+ label: string;
48
+ }>;
49
+ primaryAction: z.ZodObject<{
50
+ label: z.ZodString;
51
+ accessibilityLabel: z.ZodString;
52
+ }, "strip", z.ZodTypeAny, {
53
+ label: string;
54
+ accessibilityLabel: string;
55
+ }, {
56
+ label: string;
57
+ accessibilityLabel: string;
58
+ }>;
59
+ submitError: z.ZodObject<{
60
+ headline: z.ZodString;
61
+ textBeforeLink: z.ZodString;
62
+ contactSupportLinkText: z.ZodString;
63
+ contactSupportUrl: z.ZodString;
64
+ textAfterLink: z.ZodString;
65
+ }, "strip", z.ZodTypeAny, {
66
+ headline: string;
67
+ textBeforeLink: string;
68
+ contactSupportLinkText: string;
69
+ contactSupportUrl: string;
70
+ textAfterLink: string;
71
+ }, {
72
+ headline: string;
73
+ textBeforeLink: string;
74
+ contactSupportLinkText: string;
75
+ contactSupportUrl: string;
76
+ textAfterLink: string;
77
+ }>;
78
+ changeLimitReached: z.ZodObject<{
79
+ headline: z.ZodString;
80
+ textBeforeLink: z.ZodString;
81
+ contactSupportLinkText: z.ZodString;
82
+ contactSupportUrl: z.ZodString;
83
+ textAfterLink: z.ZodString;
84
+ }, "strip", z.ZodTypeAny, {
85
+ headline: string;
86
+ textBeforeLink: string;
87
+ contactSupportLinkText: string;
88
+ contactSupportUrl: string;
89
+ textAfterLink: string;
90
+ }, {
91
+ headline: string;
92
+ textBeforeLink: string;
93
+ contactSupportLinkText: string;
94
+ contactSupportUrl: string;
95
+ textAfterLink: string;
96
+ }>;
97
+ }, "strip", z.ZodTypeAny, {
98
+ version: string;
99
+ language: string;
100
+ cohort: string;
101
+ type: string;
102
+ header: string;
103
+ text: string;
104
+ email: {
105
+ label: string;
106
+ };
107
+ phoneNumberInput: {
108
+ label: string;
109
+ };
110
+ primaryAction: {
111
+ label: string;
112
+ accessibilityLabel: string;
113
+ };
114
+ submitError: {
115
+ headline: string;
116
+ textBeforeLink: string;
117
+ contactSupportLinkText: string;
118
+ contactSupportUrl: string;
119
+ textAfterLink: string;
120
+ };
121
+ changeLimitReached: {
122
+ headline: string;
123
+ textBeforeLink: string;
124
+ contactSupportLinkText: string;
125
+ contactSupportUrl: string;
126
+ textAfterLink: string;
127
+ };
128
+ }, {
129
+ version: string;
130
+ language: string;
131
+ cohort: string;
132
+ type: string;
133
+ header: string;
134
+ text: string;
135
+ email: {
136
+ label: string;
137
+ };
138
+ phoneNumberInput: {
139
+ label: string;
140
+ };
141
+ primaryAction: {
142
+ label: string;
143
+ accessibilityLabel: string;
144
+ };
145
+ submitError: {
146
+ headline: string;
147
+ textBeforeLink: string;
148
+ contactSupportLinkText: string;
149
+ contactSupportUrl: string;
150
+ textAfterLink: string;
151
+ };
152
+ changeLimitReached: {
153
+ headline: string;
154
+ textBeforeLink: string;
155
+ contactSupportLinkText: string;
156
+ contactSupportUrl: string;
157
+ textAfterLink: string;
158
+ };
159
+ }>;
160
+ export type ContactDetailsScreen = z.infer<typeof ContactDetailsScreenSchema>;
161
+ export declare const UserConsentScreenSchema: z.ZodObject<{
162
+ version: z.ZodString;
163
+ language: z.ZodString;
164
+ cohort: z.ZodString;
165
+ type: z.ZodString;
166
+ } & {
167
+ genericOfferHeader: z.ZodString;
168
+ indicativeOfferHeader: z.ZodString;
169
+ bulletPoints: z.ZodObject<{
170
+ bulletOne: z.ZodString;
171
+ bulletTwo: z.ZodString;
172
+ bulletThree: z.ZodString;
173
+ bulletFour: z.ZodString;
174
+ wayflyerAboutUsUrl: z.ZodString;
175
+ }, "strip", z.ZodTypeAny, {
176
+ bulletOne: string;
177
+ bulletTwo: string;
178
+ bulletThree: string;
179
+ bulletFour: string;
180
+ wayflyerAboutUsUrl: string;
181
+ }, {
182
+ bulletOne: string;
183
+ bulletTwo: string;
184
+ bulletThree: string;
185
+ bulletFour: string;
186
+ wayflyerAboutUsUrl: string;
187
+ }>;
188
+ alreadyHaveAnAccount: z.ZodObject<{
189
+ alreadyHaveAnAccountText: z.ZodString;
190
+ wayflyerSignInUrl: z.ZodString;
191
+ }, "strip", z.ZodTypeAny, {
192
+ alreadyHaveAnAccountText: string;
193
+ wayflyerSignInUrl: string;
194
+ }, {
195
+ alreadyHaveAnAccountText: string;
196
+ wayflyerSignInUrl: string;
197
+ }>;
198
+ consentNotice: z.ZodString;
199
+ primaryAction: z.ZodObject<{
200
+ label: z.ZodString;
201
+ accessibilityLabel: z.ZodString;
202
+ }, "strip", z.ZodTypeAny, {
203
+ label: string;
204
+ accessibilityLabel: string;
205
+ }, {
206
+ label: string;
207
+ accessibilityLabel: string;
208
+ }>;
209
+ startError: z.ZodObject<{
210
+ headline: z.ZodString;
211
+ textBeforeLink: z.ZodString;
212
+ contactSupportLinkText: z.ZodString;
213
+ contactSupportUrl: z.ZodString;
214
+ textAfterLink: z.ZodString;
215
+ }, "strip", z.ZodTypeAny, {
216
+ headline: string;
217
+ textBeforeLink: string;
218
+ contactSupportLinkText: string;
219
+ contactSupportUrl: string;
220
+ textAfterLink: string;
221
+ }, {
222
+ headline: string;
223
+ textBeforeLink: string;
224
+ contactSupportLinkText: string;
225
+ contactSupportUrl: string;
226
+ textAfterLink: string;
227
+ }>;
228
+ }, "strip", z.ZodTypeAny, {
229
+ version: string;
230
+ language: string;
231
+ cohort: string;
232
+ type: string;
233
+ bulletPoints: {
234
+ bulletOne: string;
235
+ bulletTwo: string;
236
+ bulletThree: string;
237
+ bulletFour: string;
238
+ wayflyerAboutUsUrl: string;
239
+ };
240
+ primaryAction: {
241
+ label: string;
242
+ accessibilityLabel: string;
243
+ };
244
+ genericOfferHeader: string;
245
+ indicativeOfferHeader: string;
246
+ alreadyHaveAnAccount: {
247
+ alreadyHaveAnAccountText: string;
248
+ wayflyerSignInUrl: string;
249
+ };
250
+ consentNotice: string;
251
+ startError: {
252
+ headline: string;
253
+ textBeforeLink: string;
254
+ contactSupportLinkText: string;
255
+ contactSupportUrl: string;
256
+ textAfterLink: string;
257
+ };
258
+ }, {
259
+ version: string;
260
+ language: string;
261
+ cohort: string;
262
+ type: string;
263
+ bulletPoints: {
264
+ bulletOne: string;
265
+ bulletTwo: string;
266
+ bulletThree: string;
267
+ bulletFour: string;
268
+ wayflyerAboutUsUrl: string;
269
+ };
270
+ primaryAction: {
271
+ label: string;
272
+ accessibilityLabel: string;
273
+ };
274
+ genericOfferHeader: string;
275
+ indicativeOfferHeader: string;
276
+ alreadyHaveAnAccount: {
277
+ alreadyHaveAnAccountText: string;
278
+ wayflyerSignInUrl: string;
279
+ };
280
+ consentNotice: string;
281
+ startError: {
282
+ headline: string;
283
+ textBeforeLink: string;
284
+ contactSupportLinkText: string;
285
+ contactSupportUrl: string;
286
+ textAfterLink: string;
287
+ };
288
+ }>;
289
+ export type UserConsentScreen = z.infer<typeof UserConsentScreenSchema>;
290
+ export declare const CountryOfIncorporationScreenSchema: z.ZodObject<{
291
+ version: z.ZodString;
292
+ language: z.ZodString;
293
+ cohort: z.ZodString;
294
+ type: z.ZodString;
295
+ } & {
296
+ header: z.ZodString;
297
+ text: z.ZodString;
298
+ checkboxes: z.ZodObject<{
299
+ agreedOnApplicationServicesUpdateNews: z.ZodObject<{
300
+ label: z.ZodString;
301
+ }, "strip", z.ZodTypeAny, {
302
+ label: string;
303
+ }, {
304
+ label: string;
305
+ }>;
306
+ agreedWithTermsAndCondition: z.ZodObject<{
307
+ label: z.ZodObject<{
308
+ textOne: z.ZodString;
309
+ textTwo: z.ZodString;
310
+ wayflyerTermsAndConditionsUrl: z.ZodString;
311
+ wayflyerPrivacyPolicyUrl: z.ZodString;
312
+ }, "strip", z.ZodTypeAny, {
313
+ textOne: string;
314
+ textTwo: string;
315
+ wayflyerTermsAndConditionsUrl: string;
316
+ wayflyerPrivacyPolicyUrl: string;
317
+ }, {
318
+ textOne: string;
319
+ textTwo: string;
320
+ wayflyerTermsAndConditionsUrl: string;
321
+ wayflyerPrivacyPolicyUrl: string;
322
+ }>;
323
+ error: z.ZodString;
324
+ }, "strip", z.ZodTypeAny, {
325
+ label: {
326
+ textOne: string;
327
+ textTwo: string;
328
+ wayflyerTermsAndConditionsUrl: string;
329
+ wayflyerPrivacyPolicyUrl: string;
330
+ };
331
+ error: string;
332
+ }, {
333
+ label: {
334
+ textOne: string;
335
+ textTwo: string;
336
+ wayflyerTermsAndConditionsUrl: string;
337
+ wayflyerPrivacyPolicyUrl: string;
338
+ };
339
+ error: string;
340
+ }>;
341
+ }, "strip", z.ZodTypeAny, {
342
+ agreedOnApplicationServicesUpdateNews: {
343
+ label: string;
344
+ };
345
+ agreedWithTermsAndCondition: {
346
+ label: {
347
+ textOne: string;
348
+ textTwo: string;
349
+ wayflyerTermsAndConditionsUrl: string;
350
+ wayflyerPrivacyPolicyUrl: string;
351
+ };
352
+ error: string;
353
+ };
354
+ }, {
355
+ agreedOnApplicationServicesUpdateNews: {
356
+ label: string;
357
+ };
358
+ agreedWithTermsAndCondition: {
359
+ label: {
360
+ textOne: string;
361
+ textTwo: string;
362
+ wayflyerTermsAndConditionsUrl: string;
363
+ wayflyerPrivacyPolicyUrl: string;
364
+ };
365
+ error: string;
366
+ };
367
+ }>;
368
+ cantSeeYourCountryBlock: z.ZodObject<{
369
+ head: z.ZodString;
370
+ textOne: z.ZodString;
371
+ textTwo: z.ZodString;
372
+ wayflyerGetInTouchUrl: z.ZodString;
373
+ wayflyerHelpCenterUrl: z.ZodString;
374
+ }, "strip", z.ZodTypeAny, {
375
+ textOne: string;
376
+ textTwo: string;
377
+ head: string;
378
+ wayflyerGetInTouchUrl: string;
379
+ wayflyerHelpCenterUrl: string;
380
+ }, {
381
+ textOne: string;
382
+ textTwo: string;
383
+ head: string;
384
+ wayflyerGetInTouchUrl: string;
385
+ wayflyerHelpCenterUrl: string;
386
+ }>;
387
+ primaryAction: z.ZodObject<{
388
+ label: z.ZodString;
389
+ accessibilityLabel: z.ZodString;
390
+ }, "strip", z.ZodTypeAny, {
391
+ label: string;
392
+ accessibilityLabel: string;
393
+ }, {
394
+ label: string;
395
+ accessibilityLabel: string;
396
+ }>;
397
+ }, "strip", z.ZodTypeAny, {
398
+ version: string;
399
+ language: string;
400
+ cohort: string;
401
+ type: string;
402
+ header: string;
403
+ text: string;
404
+ primaryAction: {
405
+ label: string;
406
+ accessibilityLabel: string;
407
+ };
408
+ checkboxes: {
409
+ agreedOnApplicationServicesUpdateNews: {
410
+ label: string;
411
+ };
412
+ agreedWithTermsAndCondition: {
413
+ label: {
414
+ textOne: string;
415
+ textTwo: string;
416
+ wayflyerTermsAndConditionsUrl: string;
417
+ wayflyerPrivacyPolicyUrl: string;
418
+ };
419
+ error: string;
420
+ };
421
+ };
422
+ cantSeeYourCountryBlock: {
423
+ textOne: string;
424
+ textTwo: string;
425
+ head: string;
426
+ wayflyerGetInTouchUrl: string;
427
+ wayflyerHelpCenterUrl: string;
428
+ };
429
+ }, {
430
+ version: string;
431
+ language: string;
432
+ cohort: string;
433
+ type: string;
434
+ header: string;
435
+ text: string;
436
+ primaryAction: {
437
+ label: string;
438
+ accessibilityLabel: string;
439
+ };
440
+ checkboxes: {
441
+ agreedOnApplicationServicesUpdateNews: {
442
+ label: string;
443
+ };
444
+ agreedWithTermsAndCondition: {
445
+ label: {
446
+ textOne: string;
447
+ textTwo: string;
448
+ wayflyerTermsAndConditionsUrl: string;
449
+ wayflyerPrivacyPolicyUrl: string;
450
+ };
451
+ error: string;
452
+ };
453
+ };
454
+ cantSeeYourCountryBlock: {
455
+ textOne: string;
456
+ textTwo: string;
457
+ head: string;
458
+ wayflyerGetInTouchUrl: string;
459
+ wayflyerHelpCenterUrl: string;
460
+ };
461
+ }>;
462
+ export type CountryOfIncorporationScreen = z.infer<typeof CountryOfIncorporationScreenSchema>;
463
+ export declare const EmailAlreadyRegisteredScreenSchema: z.ZodObject<{
464
+ version: z.ZodString;
465
+ language: z.ZodString;
466
+ cohort: z.ZodString;
467
+ type: z.ZodString;
468
+ } & {
469
+ header: z.ZodString;
470
+ body: z.ZodObject<{
471
+ textOne: z.ZodString;
472
+ supportTeamLink: z.ZodString;
473
+ supportTeamUrl: z.ZodString;
474
+ textTwo: z.ZodString;
475
+ }, "strip", z.ZodTypeAny, {
476
+ textOne: string;
477
+ textTwo: string;
478
+ supportTeamLink: string;
479
+ supportTeamUrl: string;
480
+ }, {
481
+ textOne: string;
482
+ textTwo: string;
483
+ supportTeamLink: string;
484
+ supportTeamUrl: string;
485
+ }>;
486
+ primaryAction: z.ZodObject<{
487
+ label: z.ZodString;
488
+ accessibilityLabel: z.ZodString;
489
+ } & {
490
+ url: z.ZodString;
491
+ }, "strip", z.ZodTypeAny, {
492
+ label: string;
493
+ accessibilityLabel: string;
494
+ url: string;
495
+ }, {
496
+ label: string;
497
+ accessibilityLabel: string;
498
+ url: string;
499
+ }>;
500
+ }, "strip", z.ZodTypeAny, {
501
+ version: string;
502
+ language: string;
503
+ cohort: string;
504
+ type: string;
505
+ header: string;
506
+ primaryAction: {
507
+ label: string;
508
+ accessibilityLabel: string;
509
+ url: string;
510
+ };
511
+ body: {
512
+ textOne: string;
513
+ textTwo: string;
514
+ supportTeamLink: string;
515
+ supportTeamUrl: string;
516
+ };
517
+ }, {
518
+ version: string;
519
+ language: string;
520
+ cohort: string;
521
+ type: string;
522
+ header: string;
523
+ primaryAction: {
524
+ label: string;
525
+ accessibilityLabel: string;
526
+ url: string;
527
+ };
528
+ body: {
529
+ textOne: string;
530
+ textTwo: string;
531
+ supportTeamLink: string;
532
+ supportTeamUrl: string;
533
+ };
534
+ }>;
535
+ export type EmailAlreadyRegisteredScreen = z.infer<typeof EmailAlreadyRegisteredScreenSchema>;
536
+ export declare const StateProvinceScreenSchema: z.ZodObject<{
537
+ version: z.ZodString;
538
+ language: z.ZodString;
539
+ cohort: z.ZodString;
540
+ type: z.ZodString;
541
+ } & {
542
+ headerUS: z.ZodString;
543
+ headerCA: z.ZodString;
544
+ subHeader: z.ZodString;
545
+ incorporationHelperText: z.ZodString;
546
+ stateField: z.ZodObject<{
547
+ label: z.ZodString;
548
+ placeholder: z.ZodString;
549
+ searchPlaceholder: z.ZodString;
550
+ }, "strip", z.ZodTypeAny, {
551
+ label: string;
552
+ placeholder: string;
553
+ searchPlaceholder: string;
554
+ }, {
555
+ label: string;
556
+ placeholder: string;
557
+ searchPlaceholder: string;
558
+ }>;
559
+ provinceField: z.ZodObject<{
560
+ label: z.ZodString;
561
+ placeholder: z.ZodString;
562
+ searchPlaceholder: z.ZodString;
563
+ }, "strip", z.ZodTypeAny, {
564
+ label: string;
565
+ placeholder: string;
566
+ searchPlaceholder: string;
567
+ }, {
568
+ label: string;
569
+ placeholder: string;
570
+ searchPlaceholder: string;
571
+ }>;
572
+ pobField: z.ZodObject<{
573
+ label: z.ZodString;
574
+ placeholder: z.ZodString;
575
+ searchPlaceholder: z.ZodString;
576
+ helperText: z.ZodString;
577
+ }, "strip", z.ZodTypeAny, {
578
+ label: string;
579
+ placeholder: string;
580
+ searchPlaceholder: string;
581
+ helperText: string;
582
+ }, {
583
+ label: string;
584
+ placeholder: string;
585
+ searchPlaceholder: string;
586
+ helperText: string;
587
+ }>;
588
+ primaryAction: z.ZodObject<{
589
+ label: z.ZodString;
590
+ accessibilityLabel: z.ZodString;
591
+ }, "strip", z.ZodTypeAny, {
592
+ label: string;
593
+ accessibilityLabel: string;
594
+ }, {
595
+ label: string;
596
+ accessibilityLabel: string;
597
+ }>;
598
+ }, "strip", z.ZodTypeAny, {
599
+ version: string;
600
+ language: string;
601
+ cohort: string;
602
+ type: string;
603
+ primaryAction: {
604
+ label: string;
605
+ accessibilityLabel: string;
606
+ };
607
+ headerUS: string;
608
+ headerCA: string;
609
+ subHeader: string;
610
+ incorporationHelperText: string;
611
+ stateField: {
612
+ label: string;
613
+ placeholder: string;
614
+ searchPlaceholder: string;
615
+ };
616
+ provinceField: {
617
+ label: string;
618
+ placeholder: string;
619
+ searchPlaceholder: string;
620
+ };
621
+ pobField: {
622
+ label: string;
623
+ placeholder: string;
624
+ searchPlaceholder: string;
625
+ helperText: string;
626
+ };
627
+ }, {
628
+ version: string;
629
+ language: string;
630
+ cohort: string;
631
+ type: string;
632
+ primaryAction: {
633
+ label: string;
634
+ accessibilityLabel: string;
635
+ };
636
+ headerUS: string;
637
+ headerCA: string;
638
+ subHeader: string;
639
+ incorporationHelperText: string;
640
+ stateField: {
641
+ label: string;
642
+ placeholder: string;
643
+ searchPlaceholder: string;
644
+ };
645
+ provinceField: {
646
+ label: string;
647
+ placeholder: string;
648
+ searchPlaceholder: string;
649
+ };
650
+ pobField: {
651
+ label: string;
652
+ placeholder: string;
653
+ searchPlaceholder: string;
654
+ helperText: string;
655
+ };
656
+ }>;
657
+ export type StateProvinceScreen = z.infer<typeof StateProvinceScreenSchema>;
658
+ export declare const CompanyDetailsScreenSchema: z.ZodObject<{
659
+ version: z.ZodString;
660
+ language: z.ZodString;
661
+ cohort: z.ZodString;
662
+ type: z.ZodString;
663
+ } & {
664
+ header: z.ZodString;
665
+ text: z.ZodString;
666
+ primaryAction: z.ZodObject<{
667
+ label: z.ZodString;
668
+ accessibilityLabel: z.ZodString;
669
+ }, "strip", z.ZodTypeAny, {
670
+ label: string;
671
+ accessibilityLabel: string;
672
+ }, {
673
+ label: string;
674
+ accessibilityLabel: string;
675
+ }>;
676
+ }, "strip", z.ZodTypeAny, {
677
+ version: string;
678
+ language: string;
679
+ cohort: string;
680
+ type: string;
681
+ header: string;
682
+ text: string;
683
+ primaryAction: {
684
+ label: string;
685
+ accessibilityLabel: string;
686
+ };
687
+ }, {
688
+ version: string;
689
+ language: string;
690
+ cohort: string;
691
+ type: string;
692
+ header: string;
693
+ text: string;
694
+ primaryAction: {
695
+ label: string;
696
+ accessibilityLabel: string;
697
+ };
698
+ }>;
699
+ export type CompanyDetailsScreen = z.infer<typeof CompanyDetailsScreenSchema>;
700
+ export declare const MonthlyRevenueScreenSchema: z.ZodObject<{
701
+ version: z.ZodString;
702
+ language: z.ZodString;
703
+ cohort: z.ZodString;
704
+ type: z.ZodString;
705
+ } & {
706
+ header: z.ZodString;
707
+ text: z.ZodString;
708
+ revenueSlider: z.ZodObject<{
709
+ label: z.ZodString;
710
+ }, "strip", z.ZodTypeAny, {
711
+ label: string;
712
+ }, {
713
+ label: string;
714
+ }>;
715
+ helperTextsBlock: z.ZodObject<{
716
+ initialMessage: z.ZodString;
717
+ doNotMeetRequirements: z.ZodString;
718
+ lowRevenueCheckbox: z.ZodObject<{
719
+ label: z.ZodString;
720
+ errorMessage: z.ZodString;
721
+ }, "strip", z.ZodTypeAny, {
722
+ label: string;
723
+ errorMessage: string;
724
+ }, {
725
+ label: string;
726
+ errorMessage: string;
727
+ }>;
728
+ }, "strip", z.ZodTypeAny, {
729
+ initialMessage: string;
730
+ doNotMeetRequirements: string;
731
+ lowRevenueCheckbox: {
732
+ label: string;
733
+ errorMessage: string;
734
+ };
735
+ }, {
736
+ initialMessage: string;
737
+ doNotMeetRequirements: string;
738
+ lowRevenueCheckbox: {
739
+ label: string;
740
+ errorMessage: string;
741
+ };
742
+ }>;
743
+ eligibilityHelperText: z.ZodObject<{
744
+ defaultText: z.ZodObject<{
745
+ textOne: z.ZodString;
746
+ boldText: z.ZodString;
747
+ textTwo: z.ZodString;
748
+ }, "strip", z.ZodTypeAny, {
749
+ textOne: string;
750
+ textTwo: string;
751
+ boldText: string;
752
+ }, {
753
+ textOne: string;
754
+ textTwo: string;
755
+ boldText: string;
756
+ }>;
757
+ highEligibilityText: z.ZodObject<{
758
+ textOne: z.ZodString;
759
+ boldText: z.ZodString;
760
+ textTwo: z.ZodString;
761
+ }, "strip", z.ZodTypeAny, {
762
+ textOne: string;
763
+ textTwo: string;
764
+ boldText: string;
765
+ }, {
766
+ textOne: string;
767
+ textTwo: string;
768
+ boldText: string;
769
+ }>;
770
+ }, "strip", z.ZodTypeAny, {
771
+ defaultText: {
772
+ textOne: string;
773
+ textTwo: string;
774
+ boldText: string;
775
+ };
776
+ highEligibilityText: {
777
+ textOne: string;
778
+ textTwo: string;
779
+ boldText: string;
780
+ };
781
+ }, {
782
+ defaultText: {
783
+ textOne: string;
784
+ textTwo: string;
785
+ boldText: string;
786
+ };
787
+ highEligibilityText: {
788
+ textOne: string;
789
+ textTwo: string;
790
+ boldText: string;
791
+ };
792
+ }>;
793
+ primaryAction: z.ZodObject<{
794
+ label: z.ZodString;
795
+ accessibilityLabel: z.ZodString;
796
+ }, "strip", z.ZodTypeAny, {
797
+ label: string;
798
+ accessibilityLabel: string;
799
+ }, {
800
+ label: string;
801
+ accessibilityLabel: string;
802
+ }>;
803
+ }, "strip", z.ZodTypeAny, {
804
+ version: string;
805
+ language: string;
806
+ cohort: string;
807
+ type: string;
808
+ header: string;
809
+ text: string;
810
+ primaryAction: {
811
+ label: string;
812
+ accessibilityLabel: string;
813
+ };
814
+ revenueSlider: {
815
+ label: string;
816
+ };
817
+ helperTextsBlock: {
818
+ initialMessage: string;
819
+ doNotMeetRequirements: string;
820
+ lowRevenueCheckbox: {
821
+ label: string;
822
+ errorMessage: string;
823
+ };
824
+ };
825
+ eligibilityHelperText: {
826
+ defaultText: {
827
+ textOne: string;
828
+ textTwo: string;
829
+ boldText: string;
830
+ };
831
+ highEligibilityText: {
832
+ textOne: string;
833
+ textTwo: string;
834
+ boldText: string;
835
+ };
836
+ };
837
+ }, {
838
+ version: string;
839
+ language: string;
840
+ cohort: string;
841
+ type: string;
842
+ header: string;
843
+ text: string;
844
+ primaryAction: {
845
+ label: string;
846
+ accessibilityLabel: string;
847
+ };
848
+ revenueSlider: {
849
+ label: string;
850
+ };
851
+ helperTextsBlock: {
852
+ initialMessage: string;
853
+ doNotMeetRequirements: string;
854
+ lowRevenueCheckbox: {
855
+ label: string;
856
+ errorMessage: string;
857
+ };
858
+ };
859
+ eligibilityHelperText: {
860
+ defaultText: {
861
+ textOne: string;
862
+ textTwo: string;
863
+ boldText: string;
864
+ };
865
+ highEligibilityText: {
866
+ textOne: string;
867
+ textTwo: string;
868
+ boldText: string;
869
+ };
870
+ };
871
+ }>;
872
+ export type MonthlyRevenueScreen = z.infer<typeof MonthlyRevenueScreenSchema>;
873
+ export declare const BusinessDetailsSchema: z.ZodObject<{
874
+ version: z.ZodString;
875
+ language: z.ZodString;
876
+ cohort: z.ZodString;
877
+ type: z.ZodString;
878
+ } & {
879
+ header: z.ZodString;
880
+ text: z.ZodString;
881
+ businessSearchInput: z.ZodObject<{
882
+ label: z.ZodString;
883
+ placeholder: z.ZodString;
884
+ addManuallyLabel: z.ZodString;
885
+ searchRegistryErrorMessage: z.ZodString;
886
+ }, "strip", z.ZodTypeAny, {
887
+ label: string;
888
+ placeholder: string;
889
+ addManuallyLabel: string;
890
+ searchRegistryErrorMessage: string;
891
+ }, {
892
+ label: string;
893
+ placeholder: string;
894
+ addManuallyLabel: string;
895
+ searchRegistryErrorMessage: string;
896
+ }>;
897
+ businessTypeInput: z.ZodObject<{
898
+ label: z.ZodString;
899
+ }, "strip", z.ZodTypeAny, {
900
+ label: string;
901
+ }, {
902
+ label: string;
903
+ }>;
904
+ dateOfIncorporationInput: z.ZodObject<{
905
+ label: z.ZodString;
906
+ }, "strip", z.ZodTypeAny, {
907
+ label: string;
908
+ }, {
909
+ label: string;
910
+ }>;
911
+ industryInput: z.ZodObject<{
912
+ label: z.ZodString;
913
+ placeholder: z.ZodString;
914
+ }, "strip", z.ZodTypeAny, {
915
+ label: string;
916
+ placeholder: string;
917
+ }, {
918
+ label: string;
919
+ placeholder: string;
920
+ }>;
921
+ phoneNumberInput: z.ZodObject<{
922
+ label: z.ZodString;
923
+ }, "strip", z.ZodTypeAny, {
924
+ label: string;
925
+ }, {
926
+ label: string;
927
+ }>;
928
+ websiteInput: z.ZodObject<{
929
+ label: z.ZodString;
930
+ supportText: z.ZodString;
931
+ }, "strip", z.ZodTypeAny, {
932
+ label: string;
933
+ supportText: string;
934
+ }, {
935
+ label: string;
936
+ supportText: string;
937
+ }>;
938
+ noWebsiteCheckbox: z.ZodObject<{
939
+ label: z.ZodString;
940
+ }, "strip", z.ZodTypeAny, {
941
+ label: string;
942
+ }, {
943
+ label: string;
944
+ }>;
945
+ helperTextsBlock: z.ZodObject<{
946
+ textOne: z.ZodString;
947
+ textTwo: z.ZodString;
948
+ }, "strip", z.ZodTypeAny, {
949
+ textOne: string;
950
+ textTwo: string;
951
+ }, {
952
+ textOne: string;
953
+ textTwo: string;
954
+ }>;
955
+ proofOfRegistration: z.ZodObject<{
956
+ title: z.ZodString;
957
+ description: z.ZodString;
958
+ fileConstraints: z.ZodString;
959
+ uploadFiles: z.ZodObject<{
960
+ label: z.ZodString;
961
+ accessibilityLabel: z.ZodString;
962
+ }, "strip", z.ZodTypeAny, {
963
+ label: string;
964
+ accessibilityLabel: string;
965
+ }, {
966
+ label: string;
967
+ accessibilityLabel: string;
968
+ }>;
969
+ }, "strip", z.ZodTypeAny, {
970
+ title: string;
971
+ description: string;
972
+ fileConstraints: string;
973
+ uploadFiles: {
974
+ label: string;
975
+ accessibilityLabel: string;
976
+ };
977
+ }, {
978
+ title: string;
979
+ description: string;
980
+ fileConstraints: string;
981
+ uploadFiles: {
982
+ label: string;
983
+ accessibilityLabel: string;
984
+ };
985
+ }>;
986
+ primaryAction: z.ZodObject<{
987
+ label: z.ZodString;
988
+ accessibilityLabel: z.ZodString;
989
+ }, "strip", z.ZodTypeAny, {
990
+ label: string;
991
+ accessibilityLabel: string;
992
+ }, {
993
+ label: string;
994
+ accessibilityLabel: string;
995
+ }>;
996
+ }, "strip", z.ZodTypeAny, {
997
+ version: string;
998
+ language: string;
999
+ cohort: string;
1000
+ type: string;
1001
+ header: string;
1002
+ text: string;
1003
+ phoneNumberInput: {
1004
+ label: string;
1005
+ };
1006
+ primaryAction: {
1007
+ label: string;
1008
+ accessibilityLabel: string;
1009
+ };
1010
+ helperTextsBlock: {
1011
+ textOne: string;
1012
+ textTwo: string;
1013
+ };
1014
+ businessSearchInput: {
1015
+ label: string;
1016
+ placeholder: string;
1017
+ addManuallyLabel: string;
1018
+ searchRegistryErrorMessage: string;
1019
+ };
1020
+ businessTypeInput: {
1021
+ label: string;
1022
+ };
1023
+ dateOfIncorporationInput: {
1024
+ label: string;
1025
+ };
1026
+ industryInput: {
1027
+ label: string;
1028
+ placeholder: string;
1029
+ };
1030
+ websiteInput: {
1031
+ label: string;
1032
+ supportText: string;
1033
+ };
1034
+ noWebsiteCheckbox: {
1035
+ label: string;
1036
+ };
1037
+ proofOfRegistration: {
1038
+ title: string;
1039
+ description: string;
1040
+ fileConstraints: string;
1041
+ uploadFiles: {
1042
+ label: string;
1043
+ accessibilityLabel: string;
1044
+ };
1045
+ };
1046
+ }, {
1047
+ version: string;
1048
+ language: string;
1049
+ cohort: string;
1050
+ type: string;
1051
+ header: string;
1052
+ text: string;
1053
+ phoneNumberInput: {
1054
+ label: string;
1055
+ };
1056
+ primaryAction: {
1057
+ label: string;
1058
+ accessibilityLabel: string;
1059
+ };
1060
+ helperTextsBlock: {
1061
+ textOne: string;
1062
+ textTwo: string;
1063
+ };
1064
+ businessSearchInput: {
1065
+ label: string;
1066
+ placeholder: string;
1067
+ addManuallyLabel: string;
1068
+ searchRegistryErrorMessage: string;
1069
+ };
1070
+ businessTypeInput: {
1071
+ label: string;
1072
+ };
1073
+ dateOfIncorporationInput: {
1074
+ label: string;
1075
+ };
1076
+ industryInput: {
1077
+ label: string;
1078
+ placeholder: string;
1079
+ };
1080
+ websiteInput: {
1081
+ label: string;
1082
+ supportText: string;
1083
+ };
1084
+ noWebsiteCheckbox: {
1085
+ label: string;
1086
+ };
1087
+ proofOfRegistration: {
1088
+ title: string;
1089
+ description: string;
1090
+ fileConstraints: string;
1091
+ uploadFiles: {
1092
+ label: string;
1093
+ accessibilityLabel: string;
1094
+ };
1095
+ };
1096
+ }>;
1097
+ export type BusinessDetails = z.infer<typeof BusinessDetailsSchema>;
1098
+ export declare const BusinessModelScreenSchema: z.ZodObject<{
1099
+ version: z.ZodString;
1100
+ language: z.ZodString;
1101
+ cohort: z.ZodString;
1102
+ type: z.ZodString;
1103
+ } & {
1104
+ header: z.ZodString;
1105
+ text: z.ZodString;
1106
+ customerSegment: z.ZodObject<{
1107
+ label: z.ZodString;
1108
+ b2c: z.ZodObject<{
1109
+ title: z.ZodString;
1110
+ description: z.ZodString;
1111
+ }, "strip", z.ZodTypeAny, {
1112
+ title: string;
1113
+ description: string;
1114
+ }, {
1115
+ title: string;
1116
+ description: string;
1117
+ }>;
1118
+ b2b: z.ZodObject<{
1119
+ title: z.ZodString;
1120
+ description: z.ZodString;
1121
+ }, "strip", z.ZodTypeAny, {
1122
+ title: string;
1123
+ description: string;
1124
+ }, {
1125
+ title: string;
1126
+ description: string;
1127
+ }>;
1128
+ }, "strip", z.ZodTypeAny, {
1129
+ label: string;
1130
+ b2c: {
1131
+ title: string;
1132
+ description: string;
1133
+ };
1134
+ b2b: {
1135
+ title: string;
1136
+ description: string;
1137
+ };
1138
+ }, {
1139
+ label: string;
1140
+ b2c: {
1141
+ title: string;
1142
+ description: string;
1143
+ };
1144
+ b2b: {
1145
+ title: string;
1146
+ description: string;
1147
+ };
1148
+ }>;
1149
+ salesChannel: z.ZodObject<{
1150
+ label: z.ZodString;
1151
+ online: z.ZodObject<{
1152
+ title: z.ZodString;
1153
+ description: z.ZodString;
1154
+ }, "strip", z.ZodTypeAny, {
1155
+ title: string;
1156
+ description: string;
1157
+ }, {
1158
+ title: string;
1159
+ description: string;
1160
+ }>;
1161
+ offline: z.ZodObject<{
1162
+ title: z.ZodString;
1163
+ description: z.ZodString;
1164
+ }, "strip", z.ZodTypeAny, {
1165
+ title: string;
1166
+ description: string;
1167
+ }, {
1168
+ title: string;
1169
+ description: string;
1170
+ }>;
1171
+ }, "strip", z.ZodTypeAny, {
1172
+ label: string;
1173
+ online: {
1174
+ title: string;
1175
+ description: string;
1176
+ };
1177
+ offline: {
1178
+ title: string;
1179
+ description: string;
1180
+ };
1181
+ }, {
1182
+ label: string;
1183
+ online: {
1184
+ title: string;
1185
+ description: string;
1186
+ };
1187
+ offline: {
1188
+ title: string;
1189
+ description: string;
1190
+ };
1191
+ }>;
1192
+ productType: z.ZodObject<{
1193
+ label: z.ZodString;
1194
+ physicalProducts: z.ZodObject<{
1195
+ title: z.ZodString;
1196
+ description: z.ZodString;
1197
+ }, "strip", z.ZodTypeAny, {
1198
+ title: string;
1199
+ description: string;
1200
+ }, {
1201
+ title: string;
1202
+ description: string;
1203
+ }>;
1204
+ digitalProducts: z.ZodObject<{
1205
+ title: z.ZodString;
1206
+ description: z.ZodString;
1207
+ }, "strip", z.ZodTypeAny, {
1208
+ title: string;
1209
+ description: string;
1210
+ }, {
1211
+ title: string;
1212
+ description: string;
1213
+ }>;
1214
+ services: z.ZodObject<{
1215
+ title: z.ZodString;
1216
+ description: z.ZodString;
1217
+ }, "strip", z.ZodTypeAny, {
1218
+ title: string;
1219
+ description: string;
1220
+ }, {
1221
+ title: string;
1222
+ description: string;
1223
+ }>;
1224
+ subscriptions: z.ZodObject<{
1225
+ title: z.ZodString;
1226
+ description: z.ZodString;
1227
+ }, "strip", z.ZodTypeAny, {
1228
+ title: string;
1229
+ description: string;
1230
+ }, {
1231
+ title: string;
1232
+ description: string;
1233
+ }>;
1234
+ }, "strip", z.ZodTypeAny, {
1235
+ label: string;
1236
+ physicalProducts: {
1237
+ title: string;
1238
+ description: string;
1239
+ };
1240
+ digitalProducts: {
1241
+ title: string;
1242
+ description: string;
1243
+ };
1244
+ services: {
1245
+ title: string;
1246
+ description: string;
1247
+ };
1248
+ subscriptions: {
1249
+ title: string;
1250
+ description: string;
1251
+ };
1252
+ }, {
1253
+ label: string;
1254
+ physicalProducts: {
1255
+ title: string;
1256
+ description: string;
1257
+ };
1258
+ digitalProducts: {
1259
+ title: string;
1260
+ description: string;
1261
+ };
1262
+ services: {
1263
+ title: string;
1264
+ description: string;
1265
+ };
1266
+ subscriptions: {
1267
+ title: string;
1268
+ description: string;
1269
+ };
1270
+ }>;
1271
+ primaryAction: z.ZodObject<{
1272
+ label: z.ZodString;
1273
+ accessibilityLabel: z.ZodString;
1274
+ }, "strip", z.ZodTypeAny, {
1275
+ label: string;
1276
+ accessibilityLabel: string;
1277
+ }, {
1278
+ label: string;
1279
+ accessibilityLabel: string;
1280
+ }>;
1281
+ unsupportedBusinessModel: z.ZodObject<{
1282
+ title: z.ZodString;
1283
+ textBeforeLink: z.ZodString;
1284
+ linkText: z.ZodString;
1285
+ textAfterLink: z.ZodString;
1286
+ linkAccessibilityLabel: z.ZodString;
1287
+ supportArticleUrl: z.ZodString;
1288
+ }, "strip", z.ZodTypeAny, {
1289
+ title: string;
1290
+ textBeforeLink: string;
1291
+ textAfterLink: string;
1292
+ linkText: string;
1293
+ linkAccessibilityLabel: string;
1294
+ supportArticleUrl: string;
1295
+ }, {
1296
+ title: string;
1297
+ textBeforeLink: string;
1298
+ textAfterLink: string;
1299
+ linkText: string;
1300
+ linkAccessibilityLabel: string;
1301
+ supportArticleUrl: string;
1302
+ }>;
1303
+ submitError: z.ZodObject<{
1304
+ message: z.ZodString;
1305
+ }, "strip", z.ZodTypeAny, {
1306
+ message: string;
1307
+ }, {
1308
+ message: string;
1309
+ }>;
1310
+ }, "strip", z.ZodTypeAny, {
1311
+ version: string;
1312
+ language: string;
1313
+ cohort: string;
1314
+ type: string;
1315
+ header: string;
1316
+ text: string;
1317
+ primaryAction: {
1318
+ label: string;
1319
+ accessibilityLabel: string;
1320
+ };
1321
+ submitError: {
1322
+ message: string;
1323
+ };
1324
+ customerSegment: {
1325
+ label: string;
1326
+ b2c: {
1327
+ title: string;
1328
+ description: string;
1329
+ };
1330
+ b2b: {
1331
+ title: string;
1332
+ description: string;
1333
+ };
1334
+ };
1335
+ salesChannel: {
1336
+ label: string;
1337
+ online: {
1338
+ title: string;
1339
+ description: string;
1340
+ };
1341
+ offline: {
1342
+ title: string;
1343
+ description: string;
1344
+ };
1345
+ };
1346
+ productType: {
1347
+ label: string;
1348
+ physicalProducts: {
1349
+ title: string;
1350
+ description: string;
1351
+ };
1352
+ digitalProducts: {
1353
+ title: string;
1354
+ description: string;
1355
+ };
1356
+ services: {
1357
+ title: string;
1358
+ description: string;
1359
+ };
1360
+ subscriptions: {
1361
+ title: string;
1362
+ description: string;
1363
+ };
1364
+ };
1365
+ unsupportedBusinessModel: {
1366
+ title: string;
1367
+ textBeforeLink: string;
1368
+ textAfterLink: string;
1369
+ linkText: string;
1370
+ linkAccessibilityLabel: string;
1371
+ supportArticleUrl: string;
1372
+ };
1373
+ }, {
1374
+ version: string;
1375
+ language: string;
1376
+ cohort: string;
1377
+ type: string;
1378
+ header: string;
1379
+ text: string;
1380
+ primaryAction: {
1381
+ label: string;
1382
+ accessibilityLabel: string;
1383
+ };
1384
+ submitError: {
1385
+ message: string;
1386
+ };
1387
+ customerSegment: {
1388
+ label: string;
1389
+ b2c: {
1390
+ title: string;
1391
+ description: string;
1392
+ };
1393
+ b2b: {
1394
+ title: string;
1395
+ description: string;
1396
+ };
1397
+ };
1398
+ salesChannel: {
1399
+ label: string;
1400
+ online: {
1401
+ title: string;
1402
+ description: string;
1403
+ };
1404
+ offline: {
1405
+ title: string;
1406
+ description: string;
1407
+ };
1408
+ };
1409
+ productType: {
1410
+ label: string;
1411
+ physicalProducts: {
1412
+ title: string;
1413
+ description: string;
1414
+ };
1415
+ digitalProducts: {
1416
+ title: string;
1417
+ description: string;
1418
+ };
1419
+ services: {
1420
+ title: string;
1421
+ description: string;
1422
+ };
1423
+ subscriptions: {
1424
+ title: string;
1425
+ description: string;
1426
+ };
1427
+ };
1428
+ unsupportedBusinessModel: {
1429
+ title: string;
1430
+ textBeforeLink: string;
1431
+ textAfterLink: string;
1432
+ linkText: string;
1433
+ linkAccessibilityLabel: string;
1434
+ supportArticleUrl: string;
1435
+ };
1436
+ }>;
1437
+ export type BusinessModelScreen = z.infer<typeof BusinessModelScreenSchema>;
1438
+ export declare const NotInYourCountryYetScreenSchema: z.ZodObject<{
1439
+ version: z.ZodString;
1440
+ language: z.ZodString;
1441
+ cohort: z.ZodString;
1442
+ type: z.ZodString;
1443
+ } & {
1444
+ header: z.ZodString;
1445
+ text: z.ZodString;
1446
+ countryField: z.ZodObject<{
1447
+ label: z.ZodString;
1448
+ placeholder: z.ZodString;
1449
+ }, "strip", z.ZodTypeAny, {
1450
+ label: string;
1451
+ placeholder: string;
1452
+ }, {
1453
+ label: string;
1454
+ placeholder: string;
1455
+ }>;
1456
+ notifyMeCheckbox: z.ZodObject<{
1457
+ label: z.ZodString;
1458
+ }, "strip", z.ZodTypeAny, {
1459
+ label: string;
1460
+ }, {
1461
+ label: string;
1462
+ }>;
1463
+ primaryAction: z.ZodObject<{
1464
+ label: z.ZodString;
1465
+ accessibilityLabel: z.ZodString;
1466
+ }, "strip", z.ZodTypeAny, {
1467
+ label: string;
1468
+ accessibilityLabel: string;
1469
+ }, {
1470
+ label: string;
1471
+ accessibilityLabel: string;
1472
+ }>;
1473
+ }, "strip", z.ZodTypeAny, {
1474
+ version: string;
1475
+ language: string;
1476
+ cohort: string;
1477
+ type: string;
1478
+ header: string;
1479
+ text: string;
1480
+ primaryAction: {
1481
+ label: string;
1482
+ accessibilityLabel: string;
1483
+ };
1484
+ countryField: {
1485
+ label: string;
1486
+ placeholder: string;
1487
+ };
1488
+ notifyMeCheckbox: {
1489
+ label: string;
1490
+ };
1491
+ }, {
1492
+ version: string;
1493
+ language: string;
1494
+ cohort: string;
1495
+ type: string;
1496
+ header: string;
1497
+ text: string;
1498
+ primaryAction: {
1499
+ label: string;
1500
+ accessibilityLabel: string;
1501
+ };
1502
+ countryField: {
1503
+ label: string;
1504
+ placeholder: string;
1505
+ };
1506
+ notifyMeCheckbox: {
1507
+ label: string;
1508
+ };
1509
+ }>;
1510
+ export type NotInYourCountryYetScreen = z.infer<typeof NotInYourCountryYetScreenSchema>;
1511
+ export declare const NotInYourCountryYetConfirmationScreenSchema: z.ZodObject<{
1512
+ version: z.ZodString;
1513
+ language: z.ZodString;
1514
+ cohort: z.ZodString;
1515
+ type: z.ZodString;
1516
+ } & {
1517
+ header: z.ZodString;
1518
+ body: z.ZodString;
1519
+ countryFallback: z.ZodString;
1520
+ primaryAction: z.ZodObject<{
1521
+ label: z.ZodString;
1522
+ accessibilityLabel: z.ZodString;
1523
+ }, "strip", z.ZodTypeAny, {
1524
+ label: string;
1525
+ accessibilityLabel: string;
1526
+ }, {
1527
+ label: string;
1528
+ accessibilityLabel: string;
1529
+ }>;
1530
+ }, "strip", z.ZodTypeAny, {
1531
+ version: string;
1532
+ language: string;
1533
+ cohort: string;
1534
+ type: string;
1535
+ header: string;
1536
+ primaryAction: {
1537
+ label: string;
1538
+ accessibilityLabel: string;
1539
+ };
1540
+ body: string;
1541
+ countryFallback: string;
1542
+ }, {
1543
+ version: string;
1544
+ language: string;
1545
+ cohort: string;
1546
+ type: string;
1547
+ header: string;
1548
+ primaryAction: {
1549
+ label: string;
1550
+ accessibilityLabel: string;
1551
+ };
1552
+ body: string;
1553
+ countryFallback: string;
1554
+ }>;
1555
+ export type NotInYourCountryYetConfirmationScreen = z.infer<typeof NotInYourCountryYetConfirmationScreenSchema>;
1556
+ export declare const IneligibleCountryScreenSchema: z.ZodObject<{
1557
+ version: z.ZodString;
1558
+ language: z.ZodString;
1559
+ cohort: z.ZodString;
1560
+ type: z.ZodString;
1561
+ } & {
1562
+ header: z.ZodString;
1563
+ geographyReason: z.ZodObject<{
1564
+ paragraphOne: z.ZodString;
1565
+ paragraphTwo: z.ZodString;
1566
+ }, "strip", z.ZodTypeAny, {
1567
+ paragraphOne: string;
1568
+ paragraphTwo: string;
1569
+ }, {
1570
+ paragraphOne: string;
1571
+ paragraphTwo: string;
1572
+ }>;
1573
+ eligibilityCriteria: z.ZodObject<{
1574
+ text: z.ZodString;
1575
+ linkText: z.ZodString;
1576
+ linkUrl: z.ZodString;
1577
+ textAfterLink: z.ZodString;
1578
+ }, "strip", z.ZodTypeAny, {
1579
+ text: string;
1580
+ textAfterLink: string;
1581
+ linkText: string;
1582
+ linkUrl: string;
1583
+ }, {
1584
+ text: string;
1585
+ textAfterLink: string;
1586
+ linkText: string;
1587
+ linkUrl: string;
1588
+ }>;
1589
+ primaryAction: z.ZodObject<{
1590
+ label: z.ZodString;
1591
+ accessibilityLabel: z.ZodString;
1592
+ }, "strip", z.ZodTypeAny, {
1593
+ label: string;
1594
+ accessibilityLabel: string;
1595
+ }, {
1596
+ label: string;
1597
+ accessibilityLabel: string;
1598
+ }>;
1599
+ }, "strip", z.ZodTypeAny, {
1600
+ version: string;
1601
+ language: string;
1602
+ cohort: string;
1603
+ type: string;
1604
+ header: string;
1605
+ primaryAction: {
1606
+ label: string;
1607
+ accessibilityLabel: string;
1608
+ };
1609
+ geographyReason: {
1610
+ paragraphOne: string;
1611
+ paragraphTwo: string;
1612
+ };
1613
+ eligibilityCriteria: {
1614
+ text: string;
1615
+ textAfterLink: string;
1616
+ linkText: string;
1617
+ linkUrl: string;
1618
+ };
1619
+ }, {
1620
+ version: string;
1621
+ language: string;
1622
+ cohort: string;
1623
+ type: string;
1624
+ header: string;
1625
+ primaryAction: {
1626
+ label: string;
1627
+ accessibilityLabel: string;
1628
+ };
1629
+ geographyReason: {
1630
+ paragraphOne: string;
1631
+ paragraphTwo: string;
1632
+ };
1633
+ eligibilityCriteria: {
1634
+ text: string;
1635
+ textAfterLink: string;
1636
+ linkText: string;
1637
+ linkUrl: string;
1638
+ };
1639
+ }>;
1640
+ export type IneligibleCountryScreen = z.infer<typeof IneligibleCountryScreenSchema>;
1641
+ export declare const BusinessAlreadyOnWayflyerScreenSchema: z.ZodObject<{
1642
+ version: z.ZodString;
1643
+ language: z.ZodString;
1644
+ cohort: z.ZodString;
1645
+ type: z.ZodString;
1646
+ } & {
1647
+ fallbackBusinessName: z.ZodString;
1648
+ header: z.ZodString;
1649
+ body: z.ZodObject<{
1650
+ textOne: z.ZodString;
1651
+ textTwo: z.ZodString;
1652
+ contactSupportLink: z.ZodString;
1653
+ contactSupportUrl: z.ZodString;
1654
+ }, "strip", z.ZodTypeAny, {
1655
+ contactSupportUrl: string;
1656
+ textOne: string;
1657
+ textTwo: string;
1658
+ contactSupportLink: string;
1659
+ }, {
1660
+ contactSupportUrl: string;
1661
+ textOne: string;
1662
+ textTwo: string;
1663
+ contactSupportLink: string;
1664
+ }>;
1665
+ primaryAction: z.ZodObject<{
1666
+ label: z.ZodString;
1667
+ accessibilityLabel: z.ZodString;
1668
+ }, "strip", z.ZodTypeAny, {
1669
+ label: string;
1670
+ accessibilityLabel: string;
1671
+ }, {
1672
+ label: string;
1673
+ accessibilityLabel: string;
1674
+ }>;
1675
+ }, "strip", z.ZodTypeAny, {
1676
+ version: string;
1677
+ language: string;
1678
+ cohort: string;
1679
+ type: string;
1680
+ header: string;
1681
+ primaryAction: {
1682
+ label: string;
1683
+ accessibilityLabel: string;
1684
+ };
1685
+ body: {
1686
+ contactSupportUrl: string;
1687
+ textOne: string;
1688
+ textTwo: string;
1689
+ contactSupportLink: string;
1690
+ };
1691
+ fallbackBusinessName: string;
1692
+ }, {
1693
+ version: string;
1694
+ language: string;
1695
+ cohort: string;
1696
+ type: string;
1697
+ header: string;
1698
+ primaryAction: {
1699
+ label: string;
1700
+ accessibilityLabel: string;
1701
+ };
1702
+ body: {
1703
+ contactSupportUrl: string;
1704
+ textOne: string;
1705
+ textTwo: string;
1706
+ contactSupportLink: string;
1707
+ };
1708
+ fallbackBusinessName: string;
1709
+ }>;
1710
+ export type BusinessAlreadyOnWayflyerScreen = z.infer<typeof BusinessAlreadyOnWayflyerScreenSchema>;
1711
+ export declare const HandoverToWayflyerScreenSchema: z.ZodObject<{
1712
+ version: z.ZodString;
1713
+ language: z.ZodString;
1714
+ cohort: z.ZodString;
1715
+ type: z.ZodString;
1716
+ } & {
1717
+ header: z.ZodString;
1718
+ text: z.ZodString;
1719
+ whatHappensNext: z.ZodString;
1720
+ steps: z.ZodObject<{
1721
+ businessDetails: z.ZodString;
1722
+ createWayflyerAccount: z.ZodString;
1723
+ connectAccounts: z.ZodString;
1724
+ reviewFundingOffer: z.ZodString;
1725
+ receiveFunds: z.ZodString;
1726
+ }, "strip", z.ZodTypeAny, {
1727
+ businessDetails: string;
1728
+ createWayflyerAccount: string;
1729
+ connectAccounts: string;
1730
+ reviewFundingOffer: string;
1731
+ receiveFunds: string;
1732
+ }, {
1733
+ businessDetails: string;
1734
+ createWayflyerAccount: string;
1735
+ connectAccounts: string;
1736
+ reviewFundingOffer: string;
1737
+ receiveFunds: string;
1738
+ }>;
1739
+ footerNote: z.ZodString;
1740
+ primaryAction: z.ZodObject<{
1741
+ label: z.ZodString;
1742
+ accessibilityLabel: z.ZodString;
1743
+ }, "strip", z.ZodTypeAny, {
1744
+ label: string;
1745
+ accessibilityLabel: string;
1746
+ }, {
1747
+ label: string;
1748
+ accessibilityLabel: string;
1749
+ }>;
1750
+ submitError: z.ZodObject<{
1751
+ message: z.ZodString;
1752
+ }, "strip", z.ZodTypeAny, {
1753
+ message: string;
1754
+ }, {
1755
+ message: string;
1756
+ }>;
1757
+ }, "strip", z.ZodTypeAny, {
1758
+ version: string;
1759
+ language: string;
1760
+ cohort: string;
1761
+ type: string;
1762
+ header: string;
1763
+ text: string;
1764
+ primaryAction: {
1765
+ label: string;
1766
+ accessibilityLabel: string;
1767
+ };
1768
+ submitError: {
1769
+ message: string;
1770
+ };
1771
+ whatHappensNext: string;
1772
+ steps: {
1773
+ businessDetails: string;
1774
+ createWayflyerAccount: string;
1775
+ connectAccounts: string;
1776
+ reviewFundingOffer: string;
1777
+ receiveFunds: string;
1778
+ };
1779
+ footerNote: string;
1780
+ }, {
1781
+ version: string;
1782
+ language: string;
1783
+ cohort: string;
1784
+ type: string;
1785
+ header: string;
1786
+ text: string;
1787
+ primaryAction: {
1788
+ label: string;
1789
+ accessibilityLabel: string;
1790
+ };
1791
+ submitError: {
1792
+ message: string;
1793
+ };
1794
+ whatHappensNext: string;
1795
+ steps: {
1796
+ businessDetails: string;
1797
+ createWayflyerAccount: string;
1798
+ connectAccounts: string;
1799
+ reviewFundingOffer: string;
1800
+ receiveFunds: string;
1801
+ };
1802
+ footerNote: string;
1803
+ }>;
1804
+ export type HandoverToWayflyerScreen = z.infer<typeof HandoverToWayflyerScreenSchema>;