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