import { type FC, type PropsWithChildren, type ReactNode } from 'react'; type Props = { open: boolean; title: ReactNode; yesLabel?: string; noLabel?: string; onConfirm: () => void | Promise; onClose: () => void; dataTestId?: string; }; export declare const ConfirmDialog: FC>; export {};