import type { CollectionContext } from '@/types/index.js'; import type { CollectionAfterChangeHook, FileData, JsonObject, TypeWithID } from 'payload'; type Data = FileData & JsonObject & TypeWithID; export declare const getAfterChangeHook: (context: CollectionContext) => CollectionAfterChangeHook; export {};