/** * Executes hooks in a chain, * passing previous result to the next hook in chain. */ export declare const execHooks: (schema: any, hookType: 'preHooks' | 'postHooks', hookAction: any, document?: any) => Promise;