import type { QueryOptions } from '../types';
import type { components } from './taxClassification.contract';
export type TaxClassificationSuccessResponse = components['schemas']['TaxReportingClassification'];
/**
 * @param options additional options passed to Tanstack Query, eg; refetchInterval for polling
 */
export declare const useTaxClassification: (options?: QueryOptions<TaxClassificationSuccessResponse>) => import("@tanstack/react-query").UseQueryResult<{
    businessType?: "other" | "listedPublicCompany" | "subsidiaryOfListedPublicCompany" | "governmentalOrganization" | "internationalOrganization" | "financialInstitution";
    financialInstitutionNumber?: string;
    mainSourceOfIncome?: "businessOperation" | "realEstateSales" | "investmentInterestOrRoyalty" | "propertyRental" | "other";
    requestedVerificationCode?: string;
    type?: "nonFinancialNonReportable" | "financialNonReportable" | "nonFinancialActive" | "nonFinancialPassive";
}, Error>;
