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; headerStyles?: SimpleInterpolation; headerRowChildren?: ReactNode; zIndex?: number; }; export declare const LargeModal: FC; export {};