import { EditDialogProps } from './types'; /** * Modal dialog for editing an existing entry. Integrates with the API to edit entries and manages * form state, view modes, and loading via hooks, merging default JSON Forms settings with the given props. * * @param props - The properties for the EditDialog component. * @returns The rendered modal dialog component for editing an entry. */ export declare function EditDialog(props: EditDialogProps): import("react/jsx-runtime").JSX.Element;