import { CountryEnum } from '../../enums/country.enum'; /** * Contains detailed Tax Identification Number validation information. * Includes company details and address information from tax authority validation. */ export declare class TINValidationDetails { /** * Name of the company as registered with tax authorities */ companyName?: string; /** * Primary address line */ address1: string; /** * Secondary address line */ address2?: string; /** * Tertiary address line */ address3?: string; /** * Postal code */ postcode: string; /** * City name */ city: string; /** * Country code */ country: CountryEnum; /** * State or province (if applicable) */ state?: string; /** * Tax Identification Number */ tin?: string; /** * Tax office name or identifier */ taxOffice?: string; /** * List of registered professions or business activities */ profession?: string[]; }