import { Entity } from "../../entities/entity.schema"; export declare const executeHooks: (entity: Entity, action: string, event: string, request: any, data: any) => Promise<{}>; export declare const addHook: (entityName: string, hook: any) => Promise; export declare const removeHook: (entityName: string, code: any) => Promise; export declare const existsHook: (entityName: string, code: any) => Promise;