import React from "react";
declare type Props = {
    opened: boolean;
    title?: string;
    text?: string;
    onSuccess: () => void;
    onDeny: () => void;
    confirmationText?: string;
    cancelationText?: string;
    children: React.ReactNode;
};
export declare const CustomDialog: (props: Props) => JSX.Element;
export {};
