/// <reference types="react" />
declare type Props = {
    opened: boolean;
    title?: string;
    text: string;
    onSuccess: () => void;
    onDeny: () => void;
};
export declare const ConfirmationDialog: (props: Props) => JSX.Element;
export {};
