import { ViewProps } from "@vnxjs/components/types/View";
import { CSSProperties, ReactNode } from "react";
export interface DialogProps extends ViewProps {
    style?: CSSProperties;
    defaultOpen?: boolean;
    open?: boolean;
    children?: ReactNode;
    onClose?(opened: boolean): void;
}
declare function Dialog(props: DialogProps): JSX.Element;
export default Dialog;
