import { CallFunctionParams } from './types';
export declare const callFunction: <Resp, Req extends Record<string, any> = {
    [c: string]: any;
}>(params: CallFunctionParams<Req>) => Promise<Resp>;
