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