interface IPropsModal {
    acceptButton?: boolean;
    cancelButton?: boolean;
    content: string | JSX.Element;
    closeButton?: boolean;
    opacityBackdrop?: string;
    colorBackdrop?: string;
    reverseButtons?: boolean;
    textAccept?: string;
    textCancel?: string;
}
declare const DialogComponent: (props: IPropsModal) => import("react/jsx-runtime").JSX.Element;
export default DialogComponent;
