import { CountryEnum } from '../../../enums/country.enum'; /** * Request payload for calculating tax details. * Contains company and customer location information for tax rate determination. */ export declare class TaxDetailsRequestDto { /** * Country where the company is registered */ companyCountry: CountryEnum; /** * Country where the customer is located */ customerCountry: CountryEnum; /** * Customer's Tax Identification Number */ customerTIN: string; /** * Customer's postal code */ customerPostalCode?: string; /** * Customer's state or province */ customerState?: string; /** * Indicates whether the customer address has been validated */ validatedAddress?: boolean; }