import type { FunctionDefine } from '@wufengteam/core/dist/esm/types';
export declare function getCustomFn(): FunctionDefine[];
interface Group {
    title: string;
    key: string;
    children: {
        title: string;
        key: string;
        value: FunctionDefine;
    }[];
    selectable: boolean;
}
export declare function getGroupedFunctions(): Group[];
export {};
