import type { BaseInnerFormProps } from '../../core/hooks/useForm/types';
import type { CompanyTypesValue } from '../../core/models/api/company-types-value';
import type { LegalEntityType } from '../../core/models/api/legal-entity-type';
import type { CountryCode } from '../../core/models/country-code';
import type { defaultFieldConfig } from './fieldConfig';
export interface TaxIdSchema {
    taxId?: string;
    taxIdAbsenceReason?: string;
    exemptedFromTax?: boolean;
    isUen?: boolean;
}
export interface TaxIdProps extends BaseInnerFormProps<TaxIdSchema> {
    country: CountryCode;
    companyType: CompanyTypesValue | LegalEntityType.TRUST;
    fieldConfig?: typeof defaultFieldConfig;
}
