import type { DocumentEvent } from 'payload'; export type CollectionPopulationRequestHandler = ({ apiPath, data, endpoint, serverURL, }: { apiPath: string; data: Record; endpoint: string; serverURL: string; }) => Promise; export type LivePreviewArgs = {}; export type LivePreview = void; export type LivePreviewMessageEvent = MessageEvent<{ collectionSlug?: string; data: T; externallyUpdatedRelationship?: DocumentEvent; globalSlug?: string; locale?: string; type: 'payload-live-preview'; }>; //# sourceMappingURL=types.d.ts.map