import React from "react"; export interface UnsavedChangesDialogProps { open: boolean; body?: React.ReactNode; title?: string; handleOk: () => void; handleCancel: () => void; } export declare function UnsavedChangesDialog({ open, handleOk, handleCancel, body, title }: UnsavedChangesDialogProps): React.JSX.Element;