import { Jesta } from '.';
/**
 * List functions of the current document.
 *
 * Returns a map of the name and type signature of the current document's functions.
 * See `vars` for an analogous method returning variables and their types.
 */
export declare function funcs(this: Jesta): Promise<Record<string, string>>;
export declare function funcType(_func: () => void): string;
