import type { QueryOptions } from '../types'; import type { IndustryCodesResponse } from './industryCodes.types'; export type BusinessLineType = 'acquiring' | 'issuing' | 'banking'; export type QueryKeyIndustryCodes = ['industryCodes', string, string]; export declare const useIndustryCodes: (businessLineTypes: BusinessLineType[], locale: string, options?: QueryOptions) => import("@tanstack/preact-query").UseQueryResult;