export type UnsavedChangesDialogProps = { open: boolean; title: string; description?: string; saveLabel: string; discardLabel: string; keepEditingLabel: string; busy?: boolean; saveDisabled?: boolean; onSave: () => void; onDiscard: () => void; onKeepEditing: () => void; }; export declare const UnsavedChangesDialog: (props: UnsavedChangesDialogProps) => import("react/jsx-runtime").JSX.Element;