import * as React from 'react';
export type DialogProps = {
    children?: React.ReactNode;
    'aria-labelledby': string;
    'aria-describedby': string;
    className?: string;
    onClose?: () => void;
    dialogResizerRef?: React.RefObject<HTMLDivElement | null>;
} & React.HTMLAttributes<HTMLDivElement>;
declare const Dialog: React.FC<DialogProps>;
export { Dialog };
