import { DialogCloseEvent as KendoDialogCloseEvent } from "@progress/kendo-react-dialogs";

export interface DialogProps {
  dataTestId?: string;
  children?: React.ReactNode;
  appendTo?: any;
  autoFocus?: boolean;
  className?: string;
  closeIcon?: boolean;
  contentStyle?: React.CSSProperties;
  dir?: string;
  height?: string | number;
  id?: string;
  minWidth?: string | number;
  style?: React.CSSProperties;
  themeColor?: "dark" | "light" | "primary";
  title?: string | React.ReactElement<any>;
  width?: string | number;
  onClose?: (event: KendoDialogCloseEvent) => void;
}
