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