export declare function onListen1(): Promise; export declare function onListen2(): Promise; export declare function onListen3(): Promise; export declare function preTemplate({ name, type, user, }: { name?: string; type?: string; user: Record; }): Promise<{ name: any; } | undefined>; export declare function preForm({ form, user }: { form: string; user: any; }): Promise; export declare function afterTable({ table, res, payload: rows, user, }: { table: string; res: Record; payload: any[]; user: Record; }): Promise; export declare function afterTemplate({ name, type, payload: data, user, }: { name?: string; type: string; payload: Record; user?: Record; }): Promise; export declare function afterUpdate({ table, body, payload: res, user, }: { table: string; body: Record; payload: Record; user: Record; }): Promise; export declare function afterInsert({ table, body, payload: res, user, }: { table: string; body: Record; payload: Record; user: Record; }): Promise; export declare function onReady(): Promise; //# sourceMappingURL=functions.d.ts.map