import { TabsDisplayProps, ViewDialogProps } from './types'; /** * Modal dialog for viewing an existing entry. Integrates with the API to fetch entry details 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 ViewDialog component. * @returns The rendered modal dialog component for viewing an entry. */ export declare function ViewDialog(props: ViewDialogProps): import("react/jsx-runtime").JSX.Element; export declare const TabsDisplay: (props: TabsDisplayProps) => import("react/jsx-runtime").JSX.Element;