import { Capi } from '@tencent-sdk/capi'; import { ApiServiceType } from '../modules/interface'; interface ApiFactoryOptions { serviceType: ApiServiceType; version: string; actions: ACTIONS_T; debug?: boolean; isV3?: boolean; host?: string; path?: string; customHandler?: (action: string, res: any) => any; responseHandler?: (res: any) => any; errorHandler?: (action: string, res: any) => any; } export declare function ApiFactory({ debug, isV3, actions, serviceType, host, path, version, customHandler, responseHandler, errorHandler, }: ApiFactoryOptions): Record any>; export {};