///
declare enum ModalSizes {
small = "480px",
medium = "792px",
large = "1068px"
}
interface ModalWrapperProps {
show: boolean;
hideOverlay?: boolean;
}
declare const StyledModalWrapper: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, ModalWrapperProps>>;
interface ModalPropsType {
modalSize: keyof typeof ModalSizes;
}
declare const StyledModal: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, ModalPropsType>>;
export default StyledModal;
export { StyledModalWrapper };