/// import * as uui from '@epam/uui'; interface ModalWindowMods { /** * Defines component width */ width?: '300' | '420' | '600' | '900' | number; /** * Defines component height */ height?: '300' | '700' | 'auto' | number; } /** Represents the properties of a ModalWindow component. */ export interface ModalWindowProps extends uui.ModalWindowCoreProps, ModalWindowMods { } export declare const ModalWindow: (props: ModalWindowProps & import("react").RefAttributes) => import("react").ReactElement>; export {}; //# sourceMappingURL=ModalWindow.d.ts.map