export interface TaxResidency {
    uuid: string;
    userProfile: string;
    country: string;
    isPrimary: boolean;
    taxNumber: string;
    isExempted: boolean;
    exemptionReason: string | null;
}
export type CreateTaxResidency = Omit<TaxResidency, 'uuid' | 'userProfile'>;
export type UpdateTaxResidency = Partial<Omit<TaxResidency, 'uuid' | 'userProfile'>>;
//# sourceMappingURL=tax-residency.d.ts.map