@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
package/README.md ADDED
@@ -0,0 +1,20 @@
1
+ # TaxBit Tax Documentation
2
+
3
+ A React app, widget, and component for gathering Tax Documentation data.
4
+
5
+ ## Installation
6
+
7
+ `npm install @taxbit/taxbit-tax-documentation`.
8
+
9
+ `import { TaxDocumentation } from '@taxbit/taxbit-tax-documentation';`
10
+
11
+ ```jsx
12
+ <TaxDocumentationPath onSubmit={data => alert(JSON.stringify(data))} />
13
+ ```
14
+
15
+ ## Todo
16
+
17
+ - I18n for another language
18
+ - Config for self-cert and w forms
19
+ - Style selection
20
+ -
package/dist/App.d.ts ADDED
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ export declare const DataContext: React.Context<{
3
+ hey: number;
4
+ }>;
5
+ export declare const App: () => React.JSX.Element;
@@ -0,0 +1,2 @@
1
+ import React from "react";
2
+ export declare const Component: () => React.JSX.Element;
@@ -0,0 +1,17 @@
1
+ import React from "react";
2
+ import { UsStateCode } from "types/UsStateCode";
3
+ import { CaProvinceCode } from "types/CaProvinceCode";
4
+ type AddressParts = {
5
+ street?: string;
6
+ street2?: string;
7
+ city?: string;
8
+ state?: string | UsStateCode | CaProvinceCode;
9
+ zip?: string;
10
+ country?: string;
11
+ };
12
+ type AddressProps = {
13
+ address: AddressParts;
14
+ className?: string;
15
+ };
16
+ export declare const Address: ({ address, className }: AddressProps) => React.JSX.Element;
17
+ export {};
@@ -0,0 +1 @@
1
+ export * from "./Address.tsx";
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import { TaxDocumentationKey } from "types";
3
+ export declare const ErrorMessage: ({ name, hint, }: {
4
+ name: TaxDocumentationKey;
5
+ hint?: true | undefined;
6
+ }) => React.JSX.Element | null;
@@ -0,0 +1 @@
1
+ export * from "./ErrorMessage.tsx";
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ export declare const InputStatus: ({ children, className, }: {
3
+ className?: string | undefined;
4
+ children: React.ReactNode;
5
+ }) => React.JSX.Element;
@@ -0,0 +1 @@
1
+ export * from "./InputStatus";
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ type PageProps = {
3
+ children: React.ReactNode;
4
+ };
5
+ export declare const Page: ({ children }: PageProps) => React.JSX.Element;
6
+ export {};
@@ -0,0 +1 @@
1
+ export * from "./Page.tsx";
@@ -0,0 +1,12 @@
1
+ import React from "react";
2
+ import { TaxDocumentationKey } from "types/TaxDocumentation";
3
+ export type RowProps = {
4
+ label?: string;
5
+ subLabel?: string;
6
+ value?: string;
7
+ onEdit?: () => void;
8
+ children?: React.ReactNode;
9
+ className?: string;
10
+ name?: TaxDocumentationKey;
11
+ };
12
+ export declare const Row: ({ label, subLabel, value, children, onEdit, name, className, }: RowProps) => React.JSX.Element;
@@ -0,0 +1 @@
1
+ export * from "./Row.tsx";
@@ -0,0 +1,8 @@
1
+ import React from "react";
2
+ type SectionProps = {
3
+ title?: string;
4
+ showIf?: boolean;
5
+ children: React.ReactNode;
6
+ };
7
+ export declare const Section: ({ title, showIf, children }: SectionProps) => string | number | boolean | Iterable<React.ReactNode> | React.JSX.Element | null | undefined;
8
+ export {};
@@ -0,0 +1 @@
1
+ export * from "./Section.tsx";
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ export declare const Title: ({ title, subtitle, }: {
3
+ title: string;
4
+ subtitle?: string | undefined;
5
+ }) => React.JSX.Element;
@@ -0,0 +1 @@
1
+ export * from './Title.tsx';
@@ -0,0 +1,7 @@
1
+ export * from "./Address";
2
+ export * from "./ErrorMessage";
3
+ export * from "./InputStatus";
4
+ export * from "./Page";
5
+ export * from "./Row";
6
+ export * from "./Section";
7
+ export * from "./Title";
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ type FormUIProviderProps = {
3
+ children: React.ReactNode;
4
+ };
5
+ export declare const FormUIProvider: ({ children }: FormUIProviderProps) => React.JSX.Element;
6
+ export {};
@@ -0,0 +1,3 @@
1
+ export * from "./useFormUIContext.ts";
2
+ export * from "./FormUIProvider.tsx";
3
+ export { type FormUIFields } from "./useFormUI.ts";
@@ -0,0 +1,137 @@
1
+ import { ButtonKey, ErrorKey, TextKey, TitleKey } from "i18n/types";
2
+ import { TaxDocumentation, TaxDocumentationKey } from "types/TaxDocumentation";
3
+ export type FormUIFields = {
4
+ [key in TaxDocumentationKey]?: string | undefined;
5
+ };
6
+ type FormUIErrors = {
7
+ [key in TaxDocumentationKey]: ErrorKey;
8
+ };
9
+ type FormUIRequired = {
10
+ [key in TaxDocumentationKey]?: boolean;
11
+ };
12
+ export declare const useFormUI: () => {
13
+ fields: TaxDocumentation;
14
+ setValue: (key: TaxDocumentationKey, value: string | undefined) => void;
15
+ errors: FormUIErrors;
16
+ isErrorFree: boolean;
17
+ showErrors: boolean;
18
+ exposeErrors: () => void;
19
+ hideErrors: () => void;
20
+ requiredFields: FormUIRequired;
21
+ getLocalButton: (key: ButtonKey) => string;
22
+ getLocalCaProvince: (key: string | undefined) => string;
23
+ getLocalCountry: (key: string | undefined) => string;
24
+ getLocalError: (key: ErrorKey) => string;
25
+ getLocalHint: (key: TaxDocumentationKey) => string | undefined;
26
+ getLocalOption: (key: string | undefined) => string | undefined;
27
+ getLocalPrompt: (key: TaxDocumentationKey) => string;
28
+ getLocalSubPrompt: (key: TaxDocumentationKey) => string;
29
+ getLocalText: (key: TextKey) => string;
30
+ getLocalTitle: (key: TitleKey) => string;
31
+ getLocalUsState: (key: string | undefined) => string;
32
+ getRequiredLocalPrompt: (key: TaxDocumentationKey) => string;
33
+ visibleQuestions: {
34
+ exemptPayeeCode: boolean;
35
+ exemptFatcaCode: boolean;
36
+ iAcknowlegeESignIsOk: boolean;
37
+ iAmACitizenOfTheUs: boolean;
38
+ iAmExemptFromFatcaReporting: boolean;
39
+ iAmNotSubjectToBackupWithholding: boolean;
40
+ iAuthorizeWithholdingAgent: boolean;
41
+ iCertifyToAll: boolean;
42
+ iConfirmIncomeIsNonUs: boolean;
43
+ iConfirmTheBeneficialOwnerIsExempt: boolean;
44
+ iConfirmTheEntityIsNotAUsPerson: boolean;
45
+ iConfirmTheEntityIsTheBeneficialOwner: boolean;
46
+ iConfirmTheTaxIdIsCorrect: boolean;
47
+ iHaveLegalCapacityToSign: boolean;
48
+ regardedOwnerUsPerson: boolean;
49
+ signature: boolean;
50
+ accountHolderAddressCity: boolean;
51
+ accountHolderAddressCountry: boolean;
52
+ accountHolderAddressState: boolean;
53
+ accountHolderAddressStreet2: boolean;
54
+ accountHolderAddressStreet: boolean;
55
+ accountHolderAddressZip: boolean;
56
+ accountHolderCityOfBirth: boolean;
57
+ accountHolderCountryOfBirth: boolean;
58
+ accountHolderCountryOfCitizenship: boolean;
59
+ accountHolderDateOfBirth: boolean;
60
+ accountHolderDbaName: boolean;
61
+ accountHolderMailingAddressCity: boolean;
62
+ accountHolderMailingAddressCountry: boolean;
63
+ accountHolderMailingAddressIsDifferent: boolean;
64
+ accountHolderMailingAddressState: boolean;
65
+ accountHolderMailingAddressStreet2: boolean;
66
+ accountHolderMailingAddressStreet: boolean;
67
+ accountHolderMailingAddressZip: boolean;
68
+ accountHolderName: boolean;
69
+ accountHolderFinancialAccountIdentifier: boolean;
70
+ accountHolderFinancialAccountName: boolean;
71
+ accountHolderForeignTin: boolean;
72
+ accountHolderForeignTinIsNotRequired: boolean;
73
+ accountHolderTaxResidenceCountry1: boolean;
74
+ accountHolderTaxResidenceForeignTin1: boolean;
75
+ accountHolderTaxResidenceForeignTin1IsNotRequired: boolean;
76
+ accountHolderTaxResidenceCountry2: boolean;
77
+ accountHolderTaxResidenceForeignTin2: boolean;
78
+ accountHolderTaxResidenceForeignTin2IsNotRequired: boolean;
79
+ accountHolderTaxResidenceCountry3: boolean;
80
+ accountHolderTaxResidenceForeignTin3: boolean;
81
+ accountHolderTaxResidenceForeignTin3IsNotRequired: boolean;
82
+ accountHolderTaxResidenceCountry4: boolean;
83
+ accountHolderTaxResidenceForeignTin4: boolean;
84
+ accountHolderTaxResidenceForeignTin4IsNotRequired: boolean;
85
+ accountHolderTaxResidenceCountry5: boolean;
86
+ accountHolderTaxResidenceForeignTin5: boolean;
87
+ accountHolderTaxResidenceForeignTin5IsNotRequired: boolean;
88
+ accountHolderShowTaxResidence2: boolean;
89
+ accountHolderShowTaxResidence3: boolean;
90
+ accountHolderShowTaxResidence4: boolean;
91
+ accountHolderShowTaxResidence5: boolean;
92
+ accountHolderUsTin: boolean;
93
+ accountHolderVatIdentificationNumber: boolean;
94
+ accountHolderVatCountry: boolean;
95
+ accountHolderIsIndividual: boolean;
96
+ accountHolderIsEuResident: boolean;
97
+ accountHolderUsPerson: boolean;
98
+ accountHolderUsAccountType: boolean;
99
+ accountHolderUsSmllcElection: boolean;
100
+ accountHolderUsLlcClassification: boolean;
101
+ accountHolderUsOtherClassification: boolean;
102
+ accountHolderUsTrustEstateEin: boolean;
103
+ accountHolderForeignAccountType: boolean;
104
+ accountHolderForeignTrustClassification: boolean;
105
+ accountHolderForeignOtherClassification: boolean;
106
+ regardedOwnerAddressCity: boolean;
107
+ regardedOwnerAddressCountry: boolean;
108
+ regardedOwnerAddressState: boolean;
109
+ regardedOwnerAddressStreet2: boolean;
110
+ regardedOwnerAddressStreet: boolean;
111
+ regardedOwnerAddressZip: boolean;
112
+ regardedOwnerCountryOfCitizenship: boolean;
113
+ regardedOwnerDateOfBirth: boolean;
114
+ regardedOwnerDbaName: boolean;
115
+ regardedOwnerMailingAddressCity: boolean;
116
+ regardedOwnerMailingAddressCountry: boolean;
117
+ regardedOwnerMailingAddressIsDifferent: boolean;
118
+ regardedOwnerMailingAddressState: boolean;
119
+ regardedOwnerMailingAddressStreet2: boolean;
120
+ regardedOwnerMailingAddressStreet: boolean;
121
+ regardedOwnerMailingAddressZip: boolean;
122
+ regardedOwnerName: boolean;
123
+ regardedOwnerUsAccountType: boolean;
124
+ regardedOwnerUsLlcClassification: boolean;
125
+ regardedOwnerUsOtherClassification: boolean;
126
+ regardedOwnerUsTrustEstateEin: boolean;
127
+ regardedOwnerForeignAccountType: boolean;
128
+ regardedOwnerForeignTrustClassification: boolean;
129
+ regardedOwnerForeignOtherClassification: boolean;
130
+ regardedOwnerForeignTin: boolean;
131
+ regardedOwnerForeignTinIsNotRequired: boolean;
132
+ regardedOwnerUsTin: boolean;
133
+ };
134
+ hideField: (key: TaxDocumentationKey) => void;
135
+ showField: (key: TaxDocumentationKey) => void;
136
+ };
137
+ export {};