import { AnyFunction } from './types';
/**
 * Get the params and the result and combine in a single output.
 *
 * @param func
 */
export declare function intercept(func: AnyFunction): (params: any) => Promise<any>;
