export interface IExecuteCodeOptions {
    method: string;
    params: Record<string, any>;
}
export declare const getExecuteCode: ({ method, params }: IExecuteCodeOptions) => string;
