import React from "react"; export interface DialogInterface { height?: string | number; size?: string | number; open: boolean; children?: React.ReactNode; onClose?: () => void; id?: string; } declare const Dialog: ({ open, height, size, onClose, children, id, }: DialogInterface) => JSX.Element; export default Dialog;