import { BaseDialogProps } from '../dialog/types'; import { MQ } from '../utils'; import { LogicalPaddingProps } from '../utils/logical-properties'; export type ModalProps = Omit & { overrides?: { panel?: { topOffset?: MQ; width?: MQ; height?: MQ; minWidth?: MQ; minHeight?: MQ; maxHeight?: MQ; maxWidth?: MQ; } & LogicalPaddingProps; }; }; //# sourceMappingURL=types.d.ts.map