import { FC } from 'react'; declare type ConfirmableProps = { proceed: (value: boolean) => void; show: boolean; }; export declare type CreateConfirmationOptions = { title: string; description?: string; proceedLabel?: string; cancelLabel?: string; danger?: boolean; }; export declare type ConfirmDialogProps = ConfirmableProps & CreateConfirmationOptions; export declare const ConfirmDialog: FC; export {};