import type React from 'react'; import type { RevealCollectionConfig, RevealDocument } from '../../../types/index.js'; interface DocumentFormProps { collection: RevealCollectionConfig; document?: RevealDocument; onSave: (data: Record) => void; onCancel: () => void; isLoading?: boolean; } export declare function DocumentForm({ collection, document, onSave, onCancel, isLoading, }: DocumentFormProps): React.JSX.Element; export {}; //# sourceMappingURL=DocumentForm.d.ts.map