import React, { type ReactNode } from "react"; export interface ConfirmationDialogRawProps { title: string; message?: ReactNode; open: boolean; onClose: (value?: string) => void; suffixTitle?: string; } export declare const ConfirmationDialogRaw: ({ title, message, open, onClose, suffixTitle, ...other }: ConfirmationDialogRawProps) => React.JSX.Element;