interface ConfirmDialogProps {
id: string;
keepMounted: boolean;
title?: string;
message: string;
value: string;
open: boolean;
onClose: (value: string) => void;
}
export declare function ConfirmDialog(props: ConfirmDialogProps): import("react/jsx-runtime").JSX.Element;
export {};