import { AddDialogProps } from './types'; /** * Modal dialog for adding a new entry. Integrates with the API to add 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 AddDialog component. * @returns The rendered modal dialog component for adding an entry. */ export declare function AddDialog(props: AddDialogProps): import("react/jsx-runtime").JSX.Element;