import type { QueryOptions } from '../types'; import type { TaxClassificationSuccessResponse } from './taxClassification.types'; export type QueryKeyTaxClassification = ['taxClassification']; /** * @param options additional options passed to Tanstack Query, eg; refetchInterval for polling */ export declare const useTaxClassification: (options?: QueryOptions) => import("@tanstack/preact-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>;