import { FC, ReactNode } from 'react'; import { SimpleInterpolation } from 'styled-components'; import { PopOverChildProps } from '@monorail/metaComponents/popOver/PopOver'; import { IconType } from '@monorail/visualComponents/icon/IconType'; declare type Props = Omit & { title: string; iconLeft?: IconType; headerChildren?: ReactNode; headerStyles?: SimpleInterpolation; customCloseButton?: ReactNode; zIndex?: number; }; export declare const MediumModal: FC; export {};