import { SyntheticEvent, ReactNode } from 'react'; type Props = { isOpen: boolean; onClose?: (event: SyntheticEvent) => void; size?: 'm' | 'l' | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 'scale'; zIndex?: number; title: string; children: ReactNode; getParentSelector?: () => HTMLElement; }; declare const InfoDialog: { (props: Props): import("@emotion/react/jsx-runtime").JSX.Element; displayName: string; }; export default InfoDialog;