@taxbit/react-sdk 0.0.0

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 (165) hide show
  1. package/README.md +20 -0
  2. package/dist/App.d.ts +5 -0
  3. package/dist/Component.d.ts +2 -0
  4. package/dist/components/Address/Address.d.ts +17 -0
  5. package/dist/components/Address/index.d.ts +1 -0
  6. package/dist/components/ErrorMessage/ErrorMessage.d.ts +6 -0
  7. package/dist/components/ErrorMessage/index.d.ts +1 -0
  8. package/dist/components/InputStatus/InputStatus.d.ts +5 -0
  9. package/dist/components/InputStatus/index.d.ts +1 -0
  10. package/dist/components/Page/Page.d.ts +6 -0
  11. package/dist/components/Page/index.d.ts +1 -0
  12. package/dist/components/Row/Row.d.ts +12 -0
  13. package/dist/components/Row/index.d.ts +1 -0
  14. package/dist/components/Section/Section.d.ts +8 -0
  15. package/dist/components/Section/index.d.ts +1 -0
  16. package/dist/components/Title/Title.d.ts +5 -0
  17. package/dist/components/Title/index.d.ts +1 -0
  18. package/dist/components/index.d.ts +7 -0
  19. package/dist/contexts/FormUI/FormUIProvider.d.ts +6 -0
  20. package/dist/contexts/FormUI/index.d.ts +3 -0
  21. package/dist/contexts/FormUI/useFormUI.d.ts +137 -0
  22. package/dist/contexts/FormUI/useFormUIContext.d.ts +650 -0
  23. package/dist/contexts/TaxDocumentation/TaxDocumentationPathProvider.d.ts +13 -0
  24. package/dist/contexts/TaxDocumentation/index.d.ts +2 -0
  25. package/dist/contexts/TaxDocumentation/useTaxDocumentation.d.ts +33 -0
  26. package/dist/contexts/TaxDocumentation/useTaxDocumentationContext.d.ts +44 -0
  27. package/dist/contexts/createCtx.d.ts +2 -0
  28. package/dist/contexts/index.d.ts +2 -0
  29. package/dist/entry/index.d.ts +2 -0
  30. package/dist/hooks/index.d.ts +1 -0
  31. package/dist/hooks/useTaxBit/index.d.ts +1 -0
  32. package/dist/hooks/useTaxBit/useTaxBit.d.ts +5 -0
  33. package/dist/i18n/i18n.d.ts +7 -0
  34. package/dist/i18n/index.d.ts +2 -0
  35. package/dist/i18n/locales/de-de.d.ts +2 -0
  36. package/dist/i18n/locales/en-gb.d.ts +2 -0
  37. package/dist/i18n/locales/en-us.d.ts +2 -0
  38. package/dist/i18n/locales/es-es.d.ts +2 -0
  39. package/dist/i18n/locales/fr-fr.d.ts +2 -0
  40. package/dist/i18n/locales/index.d.ts +9 -0
  41. package/dist/i18n/locales/it-it.d.ts +2 -0
  42. package/dist/i18n/locales/nl-nl.d.ts +2 -0
  43. package/dist/i18n/locales/no-no.d.ts +2 -0
  44. package/dist/i18n/locales/sv-se.d.ts +2 -0
  45. package/dist/i18n/types/LocalizationKey.d.ts +8 -0
  46. package/dist/i18n/types/PropertyFile.d.ts +39 -0
  47. package/dist/i18n/types/index.d.ts +1 -0
  48. package/dist/i18n/utils/getText.d.ts +16 -0
  49. package/dist/i18n/utils/index.d.ts +1 -0
  50. package/dist/index.css +12 -0
  51. package/dist/lookups/caProvinceOptions.d.ts +4 -0
  52. package/dist/lookups/countryOptions.d.ts +7 -0
  53. package/dist/lookups/fatcaCodeOptions.d.ts +4 -0
  54. package/dist/lookups/foreignAccountHolderAccountTypeOptions.d.ts +13 -0
  55. package/dist/lookups/foreignOtherAccountTypeOptions.d.ts +15 -0
  56. package/dist/lookups/foreignRegardedOwnerAccountTypeOptions.d.ts +11 -0
  57. package/dist/lookups/foreignTrustAccountTypeOptions.d.ts +7 -0
  58. package/dist/lookups/index.d.ts +12 -0
  59. package/dist/lookups/payeeCodeOptions.d.ts +4 -0
  60. package/dist/lookups/usAccountHolderAccountTypeOptions.d.ts +21 -0
  61. package/dist/lookups/usLlcAccountTypeOptions.d.ts +7 -0
  62. package/dist/lookups/usRegardedOwnerAccountTypeOptions.d.ts +15 -0
  63. package/dist/lookups/usStateOptions.d.ts +4 -0
  64. package/dist/main.d.ts +1 -0
  65. package/dist/minimal.css +33 -0
  66. package/dist/paths/AddressInput/AddressInput.d.ts +8 -0
  67. package/dist/paths/AddressInput/index.d.ts +1 -0
  68. package/dist/paths/FinancialAccountInput/FinancialAccountInput.d.ts +6 -0
  69. package/dist/paths/FinancialAccountInput/index.d.ts +1 -0
  70. package/dist/paths/PlaceOfBirthInput/PlaceOfBirthInput.d.ts +2 -0
  71. package/dist/paths/PlaceOfBirthInput/index.d.ts +1 -0
  72. package/dist/paths/ResidenceInput/ResidenceInput.d.ts +10 -0
  73. package/dist/paths/ResidenceInput/index.d.ts +1 -0
  74. package/dist/paths/RowInput/CheckBoxRow/CheckBoxRow.d.ts +8 -0
  75. package/dist/paths/RowInput/CheckBoxRow/index.d.ts +1 -0
  76. package/dist/paths/RowInput/ErrorRow/ErrorRow.d.ts +2 -0
  77. package/dist/paths/RowInput/ErrorRow/index.d.ts +1 -0
  78. package/dist/paths/RowInput/RadioButtonRow/RadioButtonRow.d.ts +8 -0
  79. package/dist/paths/RowInput/RadioButtonRow/index.d.ts +1 -0
  80. package/dist/paths/RowInput/SelectRow/SelectRow.d.ts +9 -0
  81. package/dist/paths/RowInput/SelectRow/index.d.ts +1 -0
  82. package/dist/paths/RowInput/TextInputRow/TextInputRow.d.ts +10 -0
  83. package/dist/paths/RowInput/TextInputRow/index.d.ts +1 -0
  84. package/dist/paths/RowInput/ToggleButtonRow/ToggleButtonRow.d.ts +3 -0
  85. package/dist/paths/RowInput/ToggleButtonRow/index.d.ts +1 -0
  86. package/dist/paths/RowInput/VisibleRow/VisibleRow.d.ts +9 -0
  87. package/dist/paths/RowInput/VisibleRow/index.d.ts +1 -0
  88. package/dist/paths/RowInput/index.d.ts +6 -0
  89. package/dist/paths/TaxDocumentationPath/AccountHolderClassification/AccountHolderClassification.d.ts +2 -0
  90. package/dist/paths/TaxDocumentationPath/AccountHolderClassification/index.d.ts +1 -0
  91. package/dist/paths/TaxDocumentationPath/AccountHolderContact/AccountHolderContact.d.ts +2 -0
  92. package/dist/paths/TaxDocumentationPath/AccountHolderContact/index.d.ts +1 -0
  93. package/dist/paths/TaxDocumentationPath/AccountHolderTax/AccountHolderTax.d.ts +2 -0
  94. package/dist/paths/TaxDocumentationPath/AccountHolderTax/index.d.ts +1 -0
  95. package/dist/paths/TaxDocumentationPath/AccountHolderTaxClarification/AccountHolderTaxClarification.d.ts +2 -0
  96. package/dist/paths/TaxDocumentationPath/AccountHolderTaxClarification/index.d.ts +1 -0
  97. package/dist/paths/TaxDocumentationPath/Exemptions/Exemptions.d.ts +2 -0
  98. package/dist/paths/TaxDocumentationPath/Exemptions/index.d.ts +1 -0
  99. package/dist/paths/TaxDocumentationPath/RegardedOwnerClassification/RegardedOwnerClassification.d.ts +2 -0
  100. package/dist/paths/TaxDocumentationPath/RegardedOwnerClassification/index.d.ts +1 -0
  101. package/dist/paths/TaxDocumentationPath/RegardedOwnerContact/RegardedOwnerContact.d.ts +2 -0
  102. package/dist/paths/TaxDocumentationPath/RegardedOwnerContact/index.d.ts +1 -0
  103. package/dist/paths/TaxDocumentationPath/RegardedOwnerTax/RegardedOwnerTax.d.ts +2 -0
  104. package/dist/paths/TaxDocumentationPath/RegardedOwnerTax/index.d.ts +1 -0
  105. package/dist/paths/TaxDocumentationPath/Summary/Recap.d.ts +2 -0
  106. package/dist/paths/TaxDocumentationPath/Summary/Summary.d.ts +3 -0
  107. package/dist/paths/TaxDocumentationPath/Summary/index.d.ts +1 -0
  108. package/dist/paths/TaxDocumentationPath/TaxDocumentationDAC7Path.d.ts +10 -0
  109. package/dist/paths/TaxDocumentationPath/TaxDocumentationPath.d.ts +12 -0
  110. package/dist/paths/TaxDocumentationPath/index.d.ts +1 -0
  111. package/dist/paths/TaxDocumentationPath/steps.d.ts +8 -0
  112. package/dist/paths/VatInput/VatInput.d.ts +8 -0
  113. package/dist/paths/VatInput/index.d.ts +1 -0
  114. package/dist/paths/index.d.ts +1 -0
  115. package/dist/services/api.d.ts +5 -0
  116. package/dist/taxbit-basic-horizontal.css +190 -0
  117. package/dist/taxbit-basic.css +189 -0
  118. package/dist/taxbit-collect-components.es.d.ts +1 -0
  119. package/dist/taxbit-collect-components.es.js +9342 -0
  120. package/dist/taxbit-collect-components.umd.js +43 -0
  121. package/dist/types/AccountType.d.ts +6 -0
  122. package/dist/types/CaProvinceCode.d.ts +1 -0
  123. package/dist/types/CountryCode.d.ts +3 -0
  124. package/dist/types/Form.d.ts +1 -0
  125. package/dist/types/TaxDocumentation.d.ts +118 -0
  126. package/dist/types/UsStateCode.d.ts +1 -0
  127. package/dist/types/Utilities.d.ts +4 -0
  128. package/dist/types/Yes.d.ts +1 -0
  129. package/dist/types/YesNo.d.ts +6 -0
  130. package/dist/types/external/ComprehensiveTaxDocumentation.d.ts +76 -0
  131. package/dist/types/external/index.d.ts +1 -0
  132. package/dist/types/index.d.ts +9 -0
  133. package/dist/ui/Actions/Actions.d.ts +10 -0
  134. package/dist/ui/Actions/index.d.ts +1 -0
  135. package/dist/ui/CheckBox/CheckBox.d.ts +8 -0
  136. package/dist/ui/CheckBox/index.d.ts +1 -0
  137. package/dist/ui/RadioButtons/RadioButtons.d.ts +13 -0
  138. package/dist/ui/RadioButtons/index.d.ts +1 -0
  139. package/dist/ui/Select/Select.d.ts +27 -0
  140. package/dist/ui/Select/index.d.ts +1 -0
  141. package/dist/ui/TextInput/TextInput.d.ts +9 -0
  142. package/dist/ui/TextInput/index.d.ts +1 -0
  143. package/dist/ui/ToggleButton/ToggleButton.d.ts +6 -0
  144. package/dist/ui/ToggleButton/index.d.ts +1 -0
  145. package/dist/ui/index.d.ts +6 -0
  146. package/dist/utils/cx.d.ts +1 -0
  147. package/dist/utils/date.d.ts +3 -0
  148. package/dist/utils/getFieldsState.d.ts +10 -0
  149. package/dist/utils/getHintKeyMap.d.ts +103 -0
  150. package/dist/utils/getPromptKeyMap.d.ts +103 -0
  151. package/dist/utils/getSupportedFields.d.ts +6 -0
  152. package/dist/utils/getVerboseDate.d.ts +1 -0
  153. package/dist/utils/getVisibleQuestions.d.ts +6 -0
  154. package/dist/utils/index.d.ts +9 -0
  155. package/dist/utils/isBlank.d.ts +2 -0
  156. package/dist/utils/transformInbound.d.ts +2 -0
  157. package/dist/utils/transformOutbound.d.ts +3 -0
  158. package/dist/validations/__tests__/validations.test.d.ts +1 -0
  159. package/dist/validations/index.d.ts +1 -0
  160. package/dist/validations/validations.d.ts +7 -0
  161. package/dist/widgets/TaxDocumentationWidget/TaxDocumentationDAC7Widget.d.ts +12 -0
  162. package/dist/widgets/TaxDocumentationWidget/TaxDocumentationWidget.d.ts +12 -0
  163. package/dist/widgets/TaxDocumentationWidget/index.d.ts +2 -0
  164. package/dist/widgets/index.d.ts +1 -0
  165. package/package.json +54 -0
@@ -0,0 +1,650 @@
1
+ /// <reference types="react" />
2
+ export declare const useFormUIContext: () => {
3
+ fields: import("../../types/TaxDocumentation.ts").TaxDocumentation;
4
+ setValue: (key: keyof import("../../types/TaxDocumentation.ts").AccountHolderContactData | keyof import("../../types/TaxDocumentation.ts").AccountHolderTaxData | keyof import("../../types/TaxDocumentation.ts").AccountHolderClassificationData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerContactData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerClassificationData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerTaxData | keyof import("../../types/TaxDocumentation.ts").SummaryData, value: string | undefined) => void;
5
+ errors: {
6
+ exemptPayeeCode: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
7
+ exemptFatcaCode: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
8
+ iAcknowlegeESignIsOk: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
9
+ iAmACitizenOfTheUs: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
10
+ iAmExemptFromFatcaReporting: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
11
+ iAmNotSubjectToBackupWithholding: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
12
+ iAuthorizeWithholdingAgent: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
13
+ iCertifyToAll: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
14
+ iConfirmIncomeIsNonUs: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
15
+ iConfirmTheBeneficialOwnerIsExempt: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
16
+ iConfirmTheEntityIsNotAUsPerson: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
17
+ iConfirmTheEntityIsTheBeneficialOwner: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
18
+ iConfirmTheTaxIdIsCorrect: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
19
+ iHaveLegalCapacityToSign: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
20
+ regardedOwnerUsPerson: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
21
+ signature: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
22
+ accountHolderAddressCity: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
23
+ accountHolderAddressCountry: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
24
+ accountHolderAddressState: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
25
+ accountHolderAddressStreet2: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
26
+ accountHolderAddressStreet: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
27
+ accountHolderAddressZip: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
28
+ accountHolderCityOfBirth: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
29
+ accountHolderCountryOfBirth: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
30
+ accountHolderCountryOfCitizenship: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
31
+ accountHolderDateOfBirth: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
32
+ accountHolderDbaName: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
33
+ accountHolderMailingAddressCity: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
34
+ accountHolderMailingAddressCountry: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
35
+ accountHolderMailingAddressIsDifferent: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
36
+ accountHolderMailingAddressState: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
37
+ accountHolderMailingAddressStreet2: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
38
+ accountHolderMailingAddressStreet: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
39
+ accountHolderMailingAddressZip: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
40
+ accountHolderName: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
41
+ accountHolderFinancialAccountIdentifier: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
42
+ accountHolderFinancialAccountName: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
43
+ accountHolderForeignTin: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
44
+ accountHolderForeignTinIsNotRequired: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
45
+ accountHolderTaxResidenceCountry1: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
46
+ accountHolderTaxResidenceForeignTin1: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
47
+ accountHolderTaxResidenceForeignTin1IsNotRequired: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
48
+ accountHolderTaxResidenceCountry2: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
49
+ accountHolderTaxResidenceForeignTin2: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
50
+ accountHolderTaxResidenceForeignTin2IsNotRequired: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
51
+ accountHolderTaxResidenceCountry3: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
52
+ accountHolderTaxResidenceForeignTin3: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
53
+ accountHolderTaxResidenceForeignTin3IsNotRequired: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
54
+ accountHolderTaxResidenceCountry4: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
55
+ accountHolderTaxResidenceForeignTin4: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
56
+ accountHolderTaxResidenceForeignTin4IsNotRequired: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
57
+ accountHolderTaxResidenceCountry5: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
58
+ accountHolderTaxResidenceForeignTin5: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
59
+ accountHolderTaxResidenceForeignTin5IsNotRequired: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
60
+ accountHolderShowTaxResidence2: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
61
+ accountHolderShowTaxResidence3: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
62
+ accountHolderShowTaxResidence4: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
63
+ accountHolderShowTaxResidence5: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
64
+ accountHolderUsTin: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
65
+ accountHolderVatIdentificationNumber: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
66
+ accountHolderVatCountry: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
67
+ accountHolderIsIndividual: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
68
+ accountHolderIsEuResident: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
69
+ accountHolderUsPerson: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
70
+ accountHolderUsAccountType: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
71
+ accountHolderUsSmllcElection: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
72
+ accountHolderUsLlcClassification: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
73
+ accountHolderUsOtherClassification: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
74
+ accountHolderUsTrustEstateEin: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
75
+ accountHolderForeignAccountType: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
76
+ accountHolderForeignTrustClassification: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
77
+ accountHolderForeignOtherClassification: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
78
+ regardedOwnerAddressCity: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
79
+ regardedOwnerAddressCountry: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
80
+ regardedOwnerAddressState: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
81
+ regardedOwnerAddressStreet2: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
82
+ regardedOwnerAddressStreet: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
83
+ regardedOwnerAddressZip: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
84
+ regardedOwnerCountryOfCitizenship: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
85
+ regardedOwnerDateOfBirth: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
86
+ regardedOwnerDbaName: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
87
+ regardedOwnerMailingAddressCity: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
88
+ regardedOwnerMailingAddressCountry: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
89
+ regardedOwnerMailingAddressIsDifferent: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
90
+ regardedOwnerMailingAddressState: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
91
+ regardedOwnerMailingAddressStreet2: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
92
+ regardedOwnerMailingAddressStreet: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
93
+ regardedOwnerMailingAddressZip: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
94
+ regardedOwnerName: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
95
+ regardedOwnerUsAccountType: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
96
+ regardedOwnerUsLlcClassification: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
97
+ regardedOwnerUsOtherClassification: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
98
+ regardedOwnerUsTrustEstateEin: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
99
+ regardedOwnerForeignAccountType: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
100
+ regardedOwnerForeignTrustClassification: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
101
+ regardedOwnerForeignOtherClassification: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
102
+ regardedOwnerForeignTin: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
103
+ regardedOwnerForeignTinIsNotRequired: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
104
+ regardedOwnerUsTin: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
105
+ };
106
+ isErrorFree: boolean;
107
+ showErrors: boolean;
108
+ exposeErrors: () => void;
109
+ hideErrors: () => void;
110
+ requiredFields: {
111
+ exemptPayeeCode?: boolean | undefined;
112
+ exemptFatcaCode?: boolean | undefined;
113
+ iAcknowlegeESignIsOk?: boolean | undefined;
114
+ iAmACitizenOfTheUs?: boolean | undefined;
115
+ iAmExemptFromFatcaReporting?: boolean | undefined;
116
+ iAmNotSubjectToBackupWithholding?: boolean | undefined;
117
+ iAuthorizeWithholdingAgent?: boolean | undefined;
118
+ iCertifyToAll?: boolean | undefined;
119
+ iConfirmIncomeIsNonUs?: boolean | undefined;
120
+ iConfirmTheBeneficialOwnerIsExempt?: boolean | undefined;
121
+ iConfirmTheEntityIsNotAUsPerson?: boolean | undefined;
122
+ iConfirmTheEntityIsTheBeneficialOwner?: boolean | undefined;
123
+ iConfirmTheTaxIdIsCorrect?: boolean | undefined;
124
+ iHaveLegalCapacityToSign?: boolean | undefined;
125
+ regardedOwnerUsPerson?: boolean | undefined;
126
+ signature?: boolean | undefined;
127
+ accountHolderAddressCity?: boolean | undefined;
128
+ accountHolderAddressCountry?: boolean | undefined;
129
+ accountHolderAddressState?: boolean | undefined;
130
+ accountHolderAddressStreet2?: boolean | undefined;
131
+ accountHolderAddressStreet?: boolean | undefined;
132
+ accountHolderAddressZip?: boolean | undefined;
133
+ accountHolderCityOfBirth?: boolean | undefined;
134
+ accountHolderCountryOfBirth?: boolean | undefined;
135
+ accountHolderCountryOfCitizenship?: boolean | undefined;
136
+ accountHolderDateOfBirth?: boolean | undefined;
137
+ accountHolderDbaName?: boolean | undefined;
138
+ accountHolderMailingAddressCity?: boolean | undefined;
139
+ accountHolderMailingAddressCountry?: boolean | undefined;
140
+ accountHolderMailingAddressIsDifferent?: boolean | undefined;
141
+ accountHolderMailingAddressState?: boolean | undefined;
142
+ accountHolderMailingAddressStreet2?: boolean | undefined;
143
+ accountHolderMailingAddressStreet?: boolean | undefined;
144
+ accountHolderMailingAddressZip?: boolean | undefined;
145
+ accountHolderName?: boolean | undefined;
146
+ accountHolderFinancialAccountIdentifier?: boolean | undefined;
147
+ accountHolderFinancialAccountName?: boolean | undefined;
148
+ accountHolderForeignTin?: boolean | undefined;
149
+ accountHolderForeignTinIsNotRequired?: boolean | undefined;
150
+ accountHolderTaxResidenceCountry1?: boolean | undefined;
151
+ accountHolderTaxResidenceForeignTin1?: boolean | undefined;
152
+ accountHolderTaxResidenceForeignTin1IsNotRequired?: boolean | undefined;
153
+ accountHolderTaxResidenceCountry2?: boolean | undefined;
154
+ accountHolderTaxResidenceForeignTin2?: boolean | undefined;
155
+ accountHolderTaxResidenceForeignTin2IsNotRequired?: boolean | undefined;
156
+ accountHolderTaxResidenceCountry3?: boolean | undefined;
157
+ accountHolderTaxResidenceForeignTin3?: boolean | undefined;
158
+ accountHolderTaxResidenceForeignTin3IsNotRequired?: boolean | undefined;
159
+ accountHolderTaxResidenceCountry4?: boolean | undefined;
160
+ accountHolderTaxResidenceForeignTin4?: boolean | undefined;
161
+ accountHolderTaxResidenceForeignTin4IsNotRequired?: boolean | undefined;
162
+ accountHolderTaxResidenceCountry5?: boolean | undefined;
163
+ accountHolderTaxResidenceForeignTin5?: boolean | undefined;
164
+ accountHolderTaxResidenceForeignTin5IsNotRequired?: boolean | undefined;
165
+ accountHolderShowTaxResidence2?: boolean | undefined;
166
+ accountHolderShowTaxResidence3?: boolean | undefined;
167
+ accountHolderShowTaxResidence4?: boolean | undefined;
168
+ accountHolderShowTaxResidence5?: boolean | undefined;
169
+ accountHolderUsTin?: boolean | undefined;
170
+ accountHolderVatIdentificationNumber?: boolean | undefined;
171
+ accountHolderVatCountry?: boolean | undefined;
172
+ accountHolderIsIndividual?: boolean | undefined;
173
+ accountHolderIsEuResident?: boolean | undefined;
174
+ accountHolderUsPerson?: boolean | undefined;
175
+ accountHolderUsAccountType?: boolean | undefined;
176
+ accountHolderUsSmllcElection?: boolean | undefined;
177
+ accountHolderUsLlcClassification?: boolean | undefined;
178
+ accountHolderUsOtherClassification?: boolean | undefined;
179
+ accountHolderUsTrustEstateEin?: boolean | undefined;
180
+ accountHolderForeignAccountType?: boolean | undefined;
181
+ accountHolderForeignTrustClassification?: boolean | undefined;
182
+ accountHolderForeignOtherClassification?: boolean | undefined;
183
+ regardedOwnerAddressCity?: boolean | undefined;
184
+ regardedOwnerAddressCountry?: boolean | undefined;
185
+ regardedOwnerAddressState?: boolean | undefined;
186
+ regardedOwnerAddressStreet2?: boolean | undefined;
187
+ regardedOwnerAddressStreet?: boolean | undefined;
188
+ regardedOwnerAddressZip?: boolean | undefined;
189
+ regardedOwnerCountryOfCitizenship?: boolean | undefined;
190
+ regardedOwnerDateOfBirth?: boolean | undefined;
191
+ regardedOwnerDbaName?: boolean | undefined;
192
+ regardedOwnerMailingAddressCity?: boolean | undefined;
193
+ regardedOwnerMailingAddressCountry?: boolean | undefined;
194
+ regardedOwnerMailingAddressIsDifferent?: boolean | undefined;
195
+ regardedOwnerMailingAddressState?: boolean | undefined;
196
+ regardedOwnerMailingAddressStreet2?: boolean | undefined;
197
+ regardedOwnerMailingAddressStreet?: boolean | undefined;
198
+ regardedOwnerMailingAddressZip?: boolean | undefined;
199
+ regardedOwnerName?: boolean | undefined;
200
+ regardedOwnerUsAccountType?: boolean | undefined;
201
+ regardedOwnerUsLlcClassification?: boolean | undefined;
202
+ regardedOwnerUsOtherClassification?: boolean | undefined;
203
+ regardedOwnerUsTrustEstateEin?: boolean | undefined;
204
+ regardedOwnerForeignAccountType?: boolean | undefined;
205
+ regardedOwnerForeignTrustClassification?: boolean | undefined;
206
+ regardedOwnerForeignOtherClassification?: boolean | undefined;
207
+ regardedOwnerForeignTin?: boolean | undefined;
208
+ regardedOwnerForeignTinIsNotRequired?: boolean | undefined;
209
+ regardedOwnerUsTin?: boolean | undefined;
210
+ };
211
+ getLocalButton: (key: import("../../i18n/types/LocalizationKey.ts").ButtonKey) => string;
212
+ getLocalCaProvince: (key: string | undefined) => string;
213
+ getLocalCountry: (key: string | undefined) => string;
214
+ getLocalError: (key: import("../../i18n/types/LocalizationKey.ts").ErrorKey) => string;
215
+ getLocalHint: (key: keyof import("../../types/TaxDocumentation.ts").AccountHolderContactData | keyof import("../../types/TaxDocumentation.ts").AccountHolderTaxData | keyof import("../../types/TaxDocumentation.ts").AccountHolderClassificationData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerContactData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerClassificationData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerTaxData | keyof import("../../types/TaxDocumentation.ts").SummaryData) => string | undefined;
216
+ getLocalOption: (key: string | undefined) => string | undefined;
217
+ getLocalPrompt: (key: keyof import("../../types/TaxDocumentation.ts").AccountHolderContactData | keyof import("../../types/TaxDocumentation.ts").AccountHolderTaxData | keyof import("../../types/TaxDocumentation.ts").AccountHolderClassificationData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerContactData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerClassificationData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerTaxData | keyof import("../../types/TaxDocumentation.ts").SummaryData) => string;
218
+ getLocalSubPrompt: (key: keyof import("../../types/TaxDocumentation.ts").AccountHolderContactData | keyof import("../../types/TaxDocumentation.ts").AccountHolderTaxData | keyof import("../../types/TaxDocumentation.ts").AccountHolderClassificationData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerContactData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerClassificationData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerTaxData | keyof import("../../types/TaxDocumentation.ts").SummaryData) => string;
219
+ getLocalText: (key: import("../../i18n/types/LocalizationKey.ts").TextKey) => string;
220
+ getLocalTitle: (key: import("../../i18n/types/LocalizationKey.ts").TitleKey) => string;
221
+ getLocalUsState: (key: string | undefined) => string;
222
+ getRequiredLocalPrompt: (key: keyof import("../../types/TaxDocumentation.ts").AccountHolderContactData | keyof import("../../types/TaxDocumentation.ts").AccountHolderTaxData | keyof import("../../types/TaxDocumentation.ts").AccountHolderClassificationData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerContactData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerClassificationData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerTaxData | keyof import("../../types/TaxDocumentation.ts").SummaryData) => string;
223
+ visibleQuestions: {
224
+ exemptPayeeCode: boolean;
225
+ exemptFatcaCode: boolean;
226
+ iAcknowlegeESignIsOk: boolean;
227
+ iAmACitizenOfTheUs: boolean;
228
+ iAmExemptFromFatcaReporting: boolean;
229
+ iAmNotSubjectToBackupWithholding: boolean;
230
+ iAuthorizeWithholdingAgent: boolean;
231
+ iCertifyToAll: boolean;
232
+ iConfirmIncomeIsNonUs: boolean;
233
+ iConfirmTheBeneficialOwnerIsExempt: boolean;
234
+ iConfirmTheEntityIsNotAUsPerson: boolean;
235
+ iConfirmTheEntityIsTheBeneficialOwner: boolean;
236
+ iConfirmTheTaxIdIsCorrect: boolean;
237
+ iHaveLegalCapacityToSign: boolean;
238
+ regardedOwnerUsPerson: boolean;
239
+ signature: boolean;
240
+ accountHolderAddressCity: boolean;
241
+ accountHolderAddressCountry: boolean;
242
+ accountHolderAddressState: boolean;
243
+ accountHolderAddressStreet2: boolean;
244
+ accountHolderAddressStreet: boolean;
245
+ accountHolderAddressZip: boolean;
246
+ accountHolderCityOfBirth: boolean;
247
+ accountHolderCountryOfBirth: boolean;
248
+ accountHolderCountryOfCitizenship: boolean;
249
+ accountHolderDateOfBirth: boolean;
250
+ accountHolderDbaName: boolean;
251
+ accountHolderMailingAddressCity: boolean;
252
+ accountHolderMailingAddressCountry: boolean;
253
+ accountHolderMailingAddressIsDifferent: boolean;
254
+ accountHolderMailingAddressState: boolean;
255
+ accountHolderMailingAddressStreet2: boolean;
256
+ accountHolderMailingAddressStreet: boolean;
257
+ accountHolderMailingAddressZip: boolean;
258
+ accountHolderName: boolean;
259
+ accountHolderFinancialAccountIdentifier: boolean;
260
+ accountHolderFinancialAccountName: boolean;
261
+ accountHolderForeignTin: boolean;
262
+ accountHolderForeignTinIsNotRequired: boolean;
263
+ accountHolderTaxResidenceCountry1: boolean;
264
+ accountHolderTaxResidenceForeignTin1: boolean;
265
+ accountHolderTaxResidenceForeignTin1IsNotRequired: boolean;
266
+ accountHolderTaxResidenceCountry2: boolean;
267
+ accountHolderTaxResidenceForeignTin2: boolean;
268
+ accountHolderTaxResidenceForeignTin2IsNotRequired: boolean;
269
+ accountHolderTaxResidenceCountry3: boolean;
270
+ accountHolderTaxResidenceForeignTin3: boolean;
271
+ accountHolderTaxResidenceForeignTin3IsNotRequired: boolean;
272
+ accountHolderTaxResidenceCountry4: boolean;
273
+ accountHolderTaxResidenceForeignTin4: boolean;
274
+ accountHolderTaxResidenceForeignTin4IsNotRequired: boolean;
275
+ accountHolderTaxResidenceCountry5: boolean;
276
+ accountHolderTaxResidenceForeignTin5: boolean;
277
+ accountHolderTaxResidenceForeignTin5IsNotRequired: boolean;
278
+ accountHolderShowTaxResidence2: boolean;
279
+ accountHolderShowTaxResidence3: boolean;
280
+ accountHolderShowTaxResidence4: boolean;
281
+ accountHolderShowTaxResidence5: boolean;
282
+ accountHolderUsTin: boolean;
283
+ accountHolderVatIdentificationNumber: boolean;
284
+ accountHolderVatCountry: boolean;
285
+ accountHolderIsIndividual: boolean;
286
+ accountHolderIsEuResident: boolean;
287
+ accountHolderUsPerson: boolean;
288
+ accountHolderUsAccountType: boolean;
289
+ accountHolderUsSmllcElection: boolean;
290
+ accountHolderUsLlcClassification: boolean;
291
+ accountHolderUsOtherClassification: boolean;
292
+ accountHolderUsTrustEstateEin: boolean;
293
+ accountHolderForeignAccountType: boolean;
294
+ accountHolderForeignTrustClassification: boolean;
295
+ accountHolderForeignOtherClassification: boolean;
296
+ regardedOwnerAddressCity: boolean;
297
+ regardedOwnerAddressCountry: boolean;
298
+ regardedOwnerAddressState: boolean;
299
+ regardedOwnerAddressStreet2: boolean;
300
+ regardedOwnerAddressStreet: boolean;
301
+ regardedOwnerAddressZip: boolean;
302
+ regardedOwnerCountryOfCitizenship: boolean;
303
+ regardedOwnerDateOfBirth: boolean;
304
+ regardedOwnerDbaName: boolean;
305
+ regardedOwnerMailingAddressCity: boolean;
306
+ regardedOwnerMailingAddressCountry: boolean;
307
+ regardedOwnerMailingAddressIsDifferent: boolean;
308
+ regardedOwnerMailingAddressState: boolean;
309
+ regardedOwnerMailingAddressStreet2: boolean;
310
+ regardedOwnerMailingAddressStreet: boolean;
311
+ regardedOwnerMailingAddressZip: boolean;
312
+ regardedOwnerName: boolean;
313
+ regardedOwnerUsAccountType: boolean;
314
+ regardedOwnerUsLlcClassification: boolean;
315
+ regardedOwnerUsOtherClassification: boolean;
316
+ regardedOwnerUsTrustEstateEin: boolean;
317
+ regardedOwnerForeignAccountType: boolean;
318
+ regardedOwnerForeignTrustClassification: boolean;
319
+ regardedOwnerForeignOtherClassification: boolean;
320
+ regardedOwnerForeignTin: boolean;
321
+ regardedOwnerForeignTinIsNotRequired: boolean;
322
+ regardedOwnerUsTin: boolean;
323
+ };
324
+ hideField: (key: keyof import("../../types/TaxDocumentation.ts").AccountHolderContactData | keyof import("../../types/TaxDocumentation.ts").AccountHolderTaxData | keyof import("../../types/TaxDocumentation.ts").AccountHolderClassificationData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerContactData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerClassificationData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerTaxData | keyof import("../../types/TaxDocumentation.ts").SummaryData) => void;
325
+ showField: (key: keyof import("../../types/TaxDocumentation.ts").AccountHolderContactData | keyof import("../../types/TaxDocumentation.ts").AccountHolderTaxData | keyof import("../../types/TaxDocumentation.ts").AccountHolderClassificationData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerContactData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerClassificationData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerTaxData | keyof import("../../types/TaxDocumentation.ts").SummaryData) => void;
326
+ }, FormUIContextProvider: import("react").Provider<{
327
+ fields: import("../../types/TaxDocumentation.ts").TaxDocumentation;
328
+ setValue: (key: keyof import("../../types/TaxDocumentation.ts").AccountHolderContactData | keyof import("../../types/TaxDocumentation.ts").AccountHolderTaxData | keyof import("../../types/TaxDocumentation.ts").AccountHolderClassificationData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerContactData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerClassificationData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerTaxData | keyof import("../../types/TaxDocumentation.ts").SummaryData, value: string | undefined) => void;
329
+ errors: {
330
+ exemptPayeeCode: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
331
+ exemptFatcaCode: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
332
+ iAcknowlegeESignIsOk: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
333
+ iAmACitizenOfTheUs: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
334
+ iAmExemptFromFatcaReporting: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
335
+ iAmNotSubjectToBackupWithholding: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
336
+ iAuthorizeWithholdingAgent: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
337
+ iCertifyToAll: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
338
+ iConfirmIncomeIsNonUs: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
339
+ iConfirmTheBeneficialOwnerIsExempt: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
340
+ iConfirmTheEntityIsNotAUsPerson: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
341
+ iConfirmTheEntityIsTheBeneficialOwner: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
342
+ iConfirmTheTaxIdIsCorrect: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
343
+ iHaveLegalCapacityToSign: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
344
+ regardedOwnerUsPerson: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
345
+ signature: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
346
+ accountHolderAddressCity: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
347
+ accountHolderAddressCountry: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
348
+ accountHolderAddressState: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
349
+ accountHolderAddressStreet2: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
350
+ accountHolderAddressStreet: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
351
+ accountHolderAddressZip: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
352
+ accountHolderCityOfBirth: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
353
+ accountHolderCountryOfBirth: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
354
+ accountHolderCountryOfCitizenship: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
355
+ accountHolderDateOfBirth: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
356
+ accountHolderDbaName: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
357
+ accountHolderMailingAddressCity: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
358
+ accountHolderMailingAddressCountry: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
359
+ accountHolderMailingAddressIsDifferent: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
360
+ accountHolderMailingAddressState: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
361
+ accountHolderMailingAddressStreet2: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
362
+ accountHolderMailingAddressStreet: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
363
+ accountHolderMailingAddressZip: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
364
+ accountHolderName: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
365
+ accountHolderFinancialAccountIdentifier: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
366
+ accountHolderFinancialAccountName: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
367
+ accountHolderForeignTin: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
368
+ accountHolderForeignTinIsNotRequired: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
369
+ accountHolderTaxResidenceCountry1: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
370
+ accountHolderTaxResidenceForeignTin1: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
371
+ accountHolderTaxResidenceForeignTin1IsNotRequired: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
372
+ accountHolderTaxResidenceCountry2: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
373
+ accountHolderTaxResidenceForeignTin2: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
374
+ accountHolderTaxResidenceForeignTin2IsNotRequired: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
375
+ accountHolderTaxResidenceCountry3: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
376
+ accountHolderTaxResidenceForeignTin3: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
377
+ accountHolderTaxResidenceForeignTin3IsNotRequired: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
378
+ accountHolderTaxResidenceCountry4: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
379
+ accountHolderTaxResidenceForeignTin4: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
380
+ accountHolderTaxResidenceForeignTin4IsNotRequired: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
381
+ accountHolderTaxResidenceCountry5: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
382
+ accountHolderTaxResidenceForeignTin5: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
383
+ accountHolderTaxResidenceForeignTin5IsNotRequired: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
384
+ accountHolderShowTaxResidence2: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
385
+ accountHolderShowTaxResidence3: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
386
+ accountHolderShowTaxResidence4: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
387
+ accountHolderShowTaxResidence5: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
388
+ accountHolderUsTin: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
389
+ accountHolderVatIdentificationNumber: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
390
+ accountHolderVatCountry: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
391
+ accountHolderIsIndividual: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
392
+ accountHolderIsEuResident: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
393
+ accountHolderUsPerson: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
394
+ accountHolderUsAccountType: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
395
+ accountHolderUsSmllcElection: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
396
+ accountHolderUsLlcClassification: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
397
+ accountHolderUsOtherClassification: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
398
+ accountHolderUsTrustEstateEin: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
399
+ accountHolderForeignAccountType: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
400
+ accountHolderForeignTrustClassification: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
401
+ accountHolderForeignOtherClassification: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
402
+ regardedOwnerAddressCity: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
403
+ regardedOwnerAddressCountry: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
404
+ regardedOwnerAddressState: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
405
+ regardedOwnerAddressStreet2: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
406
+ regardedOwnerAddressStreet: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
407
+ regardedOwnerAddressZip: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
408
+ regardedOwnerCountryOfCitizenship: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
409
+ regardedOwnerDateOfBirth: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
410
+ regardedOwnerDbaName: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
411
+ regardedOwnerMailingAddressCity: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
412
+ regardedOwnerMailingAddressCountry: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
413
+ regardedOwnerMailingAddressIsDifferent: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
414
+ regardedOwnerMailingAddressState: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
415
+ regardedOwnerMailingAddressStreet2: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
416
+ regardedOwnerMailingAddressStreet: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
417
+ regardedOwnerMailingAddressZip: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
418
+ regardedOwnerName: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
419
+ regardedOwnerUsAccountType: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
420
+ regardedOwnerUsLlcClassification: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
421
+ regardedOwnerUsOtherClassification: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
422
+ regardedOwnerUsTrustEstateEin: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
423
+ regardedOwnerForeignAccountType: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
424
+ regardedOwnerForeignTrustClassification: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
425
+ regardedOwnerForeignOtherClassification: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
426
+ regardedOwnerForeignTin: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
427
+ regardedOwnerForeignTinIsNotRequired: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
428
+ regardedOwnerUsTin: import("../../i18n/types/LocalizationKey.ts").ErrorKey;
429
+ };
430
+ isErrorFree: boolean;
431
+ showErrors: boolean;
432
+ exposeErrors: () => void;
433
+ hideErrors: () => void;
434
+ requiredFields: {
435
+ exemptPayeeCode?: boolean | undefined;
436
+ exemptFatcaCode?: boolean | undefined;
437
+ iAcknowlegeESignIsOk?: boolean | undefined;
438
+ iAmACitizenOfTheUs?: boolean | undefined;
439
+ iAmExemptFromFatcaReporting?: boolean | undefined;
440
+ iAmNotSubjectToBackupWithholding?: boolean | undefined;
441
+ iAuthorizeWithholdingAgent?: boolean | undefined;
442
+ iCertifyToAll?: boolean | undefined;
443
+ iConfirmIncomeIsNonUs?: boolean | undefined;
444
+ iConfirmTheBeneficialOwnerIsExempt?: boolean | undefined;
445
+ iConfirmTheEntityIsNotAUsPerson?: boolean | undefined;
446
+ iConfirmTheEntityIsTheBeneficialOwner?: boolean | undefined;
447
+ iConfirmTheTaxIdIsCorrect?: boolean | undefined;
448
+ iHaveLegalCapacityToSign?: boolean | undefined;
449
+ regardedOwnerUsPerson?: boolean | undefined;
450
+ signature?: boolean | undefined;
451
+ accountHolderAddressCity?: boolean | undefined;
452
+ accountHolderAddressCountry?: boolean | undefined;
453
+ accountHolderAddressState?: boolean | undefined;
454
+ accountHolderAddressStreet2?: boolean | undefined;
455
+ accountHolderAddressStreet?: boolean | undefined;
456
+ accountHolderAddressZip?: boolean | undefined;
457
+ accountHolderCityOfBirth?: boolean | undefined;
458
+ accountHolderCountryOfBirth?: boolean | undefined;
459
+ accountHolderCountryOfCitizenship?: boolean | undefined;
460
+ accountHolderDateOfBirth?: boolean | undefined;
461
+ accountHolderDbaName?: boolean | undefined;
462
+ accountHolderMailingAddressCity?: boolean | undefined;
463
+ accountHolderMailingAddressCountry?: boolean | undefined;
464
+ accountHolderMailingAddressIsDifferent?: boolean | undefined;
465
+ accountHolderMailingAddressState?: boolean | undefined;
466
+ accountHolderMailingAddressStreet2?: boolean | undefined;
467
+ accountHolderMailingAddressStreet?: boolean | undefined;
468
+ accountHolderMailingAddressZip?: boolean | undefined;
469
+ accountHolderName?: boolean | undefined;
470
+ accountHolderFinancialAccountIdentifier?: boolean | undefined;
471
+ accountHolderFinancialAccountName?: boolean | undefined;
472
+ accountHolderForeignTin?: boolean | undefined;
473
+ accountHolderForeignTinIsNotRequired?: boolean | undefined;
474
+ accountHolderTaxResidenceCountry1?: boolean | undefined;
475
+ accountHolderTaxResidenceForeignTin1?: boolean | undefined;
476
+ accountHolderTaxResidenceForeignTin1IsNotRequired?: boolean | undefined;
477
+ accountHolderTaxResidenceCountry2?: boolean | undefined;
478
+ accountHolderTaxResidenceForeignTin2?: boolean | undefined;
479
+ accountHolderTaxResidenceForeignTin2IsNotRequired?: boolean | undefined;
480
+ accountHolderTaxResidenceCountry3?: boolean | undefined;
481
+ accountHolderTaxResidenceForeignTin3?: boolean | undefined;
482
+ accountHolderTaxResidenceForeignTin3IsNotRequired?: boolean | undefined;
483
+ accountHolderTaxResidenceCountry4?: boolean | undefined;
484
+ accountHolderTaxResidenceForeignTin4?: boolean | undefined;
485
+ accountHolderTaxResidenceForeignTin4IsNotRequired?: boolean | undefined;
486
+ accountHolderTaxResidenceCountry5?: boolean | undefined;
487
+ accountHolderTaxResidenceForeignTin5?: boolean | undefined;
488
+ accountHolderTaxResidenceForeignTin5IsNotRequired?: boolean | undefined;
489
+ accountHolderShowTaxResidence2?: boolean | undefined;
490
+ accountHolderShowTaxResidence3?: boolean | undefined;
491
+ accountHolderShowTaxResidence4?: boolean | undefined;
492
+ accountHolderShowTaxResidence5?: boolean | undefined;
493
+ accountHolderUsTin?: boolean | undefined;
494
+ accountHolderVatIdentificationNumber?: boolean | undefined;
495
+ accountHolderVatCountry?: boolean | undefined;
496
+ accountHolderIsIndividual?: boolean | undefined;
497
+ accountHolderIsEuResident?: boolean | undefined;
498
+ accountHolderUsPerson?: boolean | undefined;
499
+ accountHolderUsAccountType?: boolean | undefined;
500
+ accountHolderUsSmllcElection?: boolean | undefined;
501
+ accountHolderUsLlcClassification?: boolean | undefined;
502
+ accountHolderUsOtherClassification?: boolean | undefined;
503
+ accountHolderUsTrustEstateEin?: boolean | undefined;
504
+ accountHolderForeignAccountType?: boolean | undefined;
505
+ accountHolderForeignTrustClassification?: boolean | undefined;
506
+ accountHolderForeignOtherClassification?: boolean | undefined;
507
+ regardedOwnerAddressCity?: boolean | undefined;
508
+ regardedOwnerAddressCountry?: boolean | undefined;
509
+ regardedOwnerAddressState?: boolean | undefined;
510
+ regardedOwnerAddressStreet2?: boolean | undefined;
511
+ regardedOwnerAddressStreet?: boolean | undefined;
512
+ regardedOwnerAddressZip?: boolean | undefined;
513
+ regardedOwnerCountryOfCitizenship?: boolean | undefined;
514
+ regardedOwnerDateOfBirth?: boolean | undefined;
515
+ regardedOwnerDbaName?: boolean | undefined;
516
+ regardedOwnerMailingAddressCity?: boolean | undefined;
517
+ regardedOwnerMailingAddressCountry?: boolean | undefined;
518
+ regardedOwnerMailingAddressIsDifferent?: boolean | undefined;
519
+ regardedOwnerMailingAddressState?: boolean | undefined;
520
+ regardedOwnerMailingAddressStreet2?: boolean | undefined;
521
+ regardedOwnerMailingAddressStreet?: boolean | undefined;
522
+ regardedOwnerMailingAddressZip?: boolean | undefined;
523
+ regardedOwnerName?: boolean | undefined;
524
+ regardedOwnerUsAccountType?: boolean | undefined;
525
+ regardedOwnerUsLlcClassification?: boolean | undefined;
526
+ regardedOwnerUsOtherClassification?: boolean | undefined;
527
+ regardedOwnerUsTrustEstateEin?: boolean | undefined;
528
+ regardedOwnerForeignAccountType?: boolean | undefined;
529
+ regardedOwnerForeignTrustClassification?: boolean | undefined;
530
+ regardedOwnerForeignOtherClassification?: boolean | undefined;
531
+ regardedOwnerForeignTin?: boolean | undefined;
532
+ regardedOwnerForeignTinIsNotRequired?: boolean | undefined;
533
+ regardedOwnerUsTin?: boolean | undefined;
534
+ };
535
+ getLocalButton: (key: import("../../i18n/types/LocalizationKey.ts").ButtonKey) => string;
536
+ getLocalCaProvince: (key: string | undefined) => string;
537
+ getLocalCountry: (key: string | undefined) => string;
538
+ getLocalError: (key: import("../../i18n/types/LocalizationKey.ts").ErrorKey) => string;
539
+ getLocalHint: (key: keyof import("../../types/TaxDocumentation.ts").AccountHolderContactData | keyof import("../../types/TaxDocumentation.ts").AccountHolderTaxData | keyof import("../../types/TaxDocumentation.ts").AccountHolderClassificationData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerContactData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerClassificationData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerTaxData | keyof import("../../types/TaxDocumentation.ts").SummaryData) => string | undefined;
540
+ getLocalOption: (key: string | undefined) => string | undefined;
541
+ getLocalPrompt: (key: keyof import("../../types/TaxDocumentation.ts").AccountHolderContactData | keyof import("../../types/TaxDocumentation.ts").AccountHolderTaxData | keyof import("../../types/TaxDocumentation.ts").AccountHolderClassificationData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerContactData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerClassificationData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerTaxData | keyof import("../../types/TaxDocumentation.ts").SummaryData) => string;
542
+ getLocalSubPrompt: (key: keyof import("../../types/TaxDocumentation.ts").AccountHolderContactData | keyof import("../../types/TaxDocumentation.ts").AccountHolderTaxData | keyof import("../../types/TaxDocumentation.ts").AccountHolderClassificationData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerContactData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerClassificationData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerTaxData | keyof import("../../types/TaxDocumentation.ts").SummaryData) => string;
543
+ getLocalText: (key: import("../../i18n/types/LocalizationKey.ts").TextKey) => string;
544
+ getLocalTitle: (key: import("../../i18n/types/LocalizationKey.ts").TitleKey) => string;
545
+ getLocalUsState: (key: string | undefined) => string;
546
+ getRequiredLocalPrompt: (key: keyof import("../../types/TaxDocumentation.ts").AccountHolderContactData | keyof import("../../types/TaxDocumentation.ts").AccountHolderTaxData | keyof import("../../types/TaxDocumentation.ts").AccountHolderClassificationData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerContactData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerClassificationData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerTaxData | keyof import("../../types/TaxDocumentation.ts").SummaryData) => string;
547
+ visibleQuestions: {
548
+ exemptPayeeCode: boolean;
549
+ exemptFatcaCode: boolean;
550
+ iAcknowlegeESignIsOk: boolean;
551
+ iAmACitizenOfTheUs: boolean;
552
+ iAmExemptFromFatcaReporting: boolean;
553
+ iAmNotSubjectToBackupWithholding: boolean;
554
+ iAuthorizeWithholdingAgent: boolean;
555
+ iCertifyToAll: boolean;
556
+ iConfirmIncomeIsNonUs: boolean;
557
+ iConfirmTheBeneficialOwnerIsExempt: boolean;
558
+ iConfirmTheEntityIsNotAUsPerson: boolean;
559
+ iConfirmTheEntityIsTheBeneficialOwner: boolean;
560
+ iConfirmTheTaxIdIsCorrect: boolean;
561
+ iHaveLegalCapacityToSign: boolean;
562
+ regardedOwnerUsPerson: boolean;
563
+ signature: boolean;
564
+ accountHolderAddressCity: boolean;
565
+ accountHolderAddressCountry: boolean;
566
+ accountHolderAddressState: boolean;
567
+ accountHolderAddressStreet2: boolean;
568
+ accountHolderAddressStreet: boolean;
569
+ accountHolderAddressZip: boolean;
570
+ accountHolderCityOfBirth: boolean;
571
+ accountHolderCountryOfBirth: boolean;
572
+ accountHolderCountryOfCitizenship: boolean;
573
+ accountHolderDateOfBirth: boolean;
574
+ accountHolderDbaName: boolean;
575
+ accountHolderMailingAddressCity: boolean;
576
+ accountHolderMailingAddressCountry: boolean;
577
+ accountHolderMailingAddressIsDifferent: boolean;
578
+ accountHolderMailingAddressState: boolean;
579
+ accountHolderMailingAddressStreet2: boolean;
580
+ accountHolderMailingAddressStreet: boolean;
581
+ accountHolderMailingAddressZip: boolean;
582
+ accountHolderName: boolean;
583
+ accountHolderFinancialAccountIdentifier: boolean;
584
+ accountHolderFinancialAccountName: boolean;
585
+ accountHolderForeignTin: boolean;
586
+ accountHolderForeignTinIsNotRequired: boolean;
587
+ accountHolderTaxResidenceCountry1: boolean;
588
+ accountHolderTaxResidenceForeignTin1: boolean;
589
+ accountHolderTaxResidenceForeignTin1IsNotRequired: boolean;
590
+ accountHolderTaxResidenceCountry2: boolean;
591
+ accountHolderTaxResidenceForeignTin2: boolean;
592
+ accountHolderTaxResidenceForeignTin2IsNotRequired: boolean;
593
+ accountHolderTaxResidenceCountry3: boolean;
594
+ accountHolderTaxResidenceForeignTin3: boolean;
595
+ accountHolderTaxResidenceForeignTin3IsNotRequired: boolean;
596
+ accountHolderTaxResidenceCountry4: boolean;
597
+ accountHolderTaxResidenceForeignTin4: boolean;
598
+ accountHolderTaxResidenceForeignTin4IsNotRequired: boolean;
599
+ accountHolderTaxResidenceCountry5: boolean;
600
+ accountHolderTaxResidenceForeignTin5: boolean;
601
+ accountHolderTaxResidenceForeignTin5IsNotRequired: boolean;
602
+ accountHolderShowTaxResidence2: boolean;
603
+ accountHolderShowTaxResidence3: boolean;
604
+ accountHolderShowTaxResidence4: boolean;
605
+ accountHolderShowTaxResidence5: boolean;
606
+ accountHolderUsTin: boolean;
607
+ accountHolderVatIdentificationNumber: boolean;
608
+ accountHolderVatCountry: boolean;
609
+ accountHolderIsIndividual: boolean;
610
+ accountHolderIsEuResident: boolean;
611
+ accountHolderUsPerson: boolean;
612
+ accountHolderUsAccountType: boolean;
613
+ accountHolderUsSmllcElection: boolean;
614
+ accountHolderUsLlcClassification: boolean;
615
+ accountHolderUsOtherClassification: boolean;
616
+ accountHolderUsTrustEstateEin: boolean;
617
+ accountHolderForeignAccountType: boolean;
618
+ accountHolderForeignTrustClassification: boolean;
619
+ accountHolderForeignOtherClassification: boolean;
620
+ regardedOwnerAddressCity: boolean;
621
+ regardedOwnerAddressCountry: boolean;
622
+ regardedOwnerAddressState: boolean;
623
+ regardedOwnerAddressStreet2: boolean;
624
+ regardedOwnerAddressStreet: boolean;
625
+ regardedOwnerAddressZip: boolean;
626
+ regardedOwnerCountryOfCitizenship: boolean;
627
+ regardedOwnerDateOfBirth: boolean;
628
+ regardedOwnerDbaName: boolean;
629
+ regardedOwnerMailingAddressCity: boolean;
630
+ regardedOwnerMailingAddressCountry: boolean;
631
+ regardedOwnerMailingAddressIsDifferent: boolean;
632
+ regardedOwnerMailingAddressState: boolean;
633
+ regardedOwnerMailingAddressStreet2: boolean;
634
+ regardedOwnerMailingAddressStreet: boolean;
635
+ regardedOwnerMailingAddressZip: boolean;
636
+ regardedOwnerName: boolean;
637
+ regardedOwnerUsAccountType: boolean;
638
+ regardedOwnerUsLlcClassification: boolean;
639
+ regardedOwnerUsOtherClassification: boolean;
640
+ regardedOwnerUsTrustEstateEin: boolean;
641
+ regardedOwnerForeignAccountType: boolean;
642
+ regardedOwnerForeignTrustClassification: boolean;
643
+ regardedOwnerForeignOtherClassification: boolean;
644
+ regardedOwnerForeignTin: boolean;
645
+ regardedOwnerForeignTinIsNotRequired: boolean;
646
+ regardedOwnerUsTin: boolean;
647
+ };
648
+ hideField: (key: keyof import("../../types/TaxDocumentation.ts").AccountHolderContactData | keyof import("../../types/TaxDocumentation.ts").AccountHolderTaxData | keyof import("../../types/TaxDocumentation.ts").AccountHolderClassificationData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerContactData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerClassificationData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerTaxData | keyof import("../../types/TaxDocumentation.ts").SummaryData) => void;
649
+ showField: (key: keyof import("../../types/TaxDocumentation.ts").AccountHolderContactData | keyof import("../../types/TaxDocumentation.ts").AccountHolderTaxData | keyof import("../../types/TaxDocumentation.ts").AccountHolderClassificationData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerContactData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerClassificationData | keyof import("../../types/TaxDocumentation.ts").RegardedOwnerTaxData | keyof import("../../types/TaxDocumentation.ts").SummaryData) => void;
650
+ } | undefined>;