/** * Collection Hooks * * Utilities for calling collection hooks. */ import type { RevealCollectionConfig, RevealDocument, RevealRequest, RevealUIInstance } from '../types/index.js'; /** * Call afterChange hooks for a collection */ export declare function callAfterChangeHooks(config: RevealCollectionConfig, doc: RevealDocument, req: RevealRequest, operation: 'create' | 'update', previousDoc?: RevealDocument, revealui?: RevealUIInstance): Promise; //# sourceMappingURL=hooks.d.ts.map