import './modals.pcss';
import { PropsWithChildren, ReactElement } from 'react';
export type ModalProps = PropsWithChildren<{
    size?: 'large' | 'medium' | 'small';
    'aria-labelledby'?: string;
    'aria-described-by'?: string;
    isOpen: boolean;
    container?: Element;
}>;
export default function Modal(props: ModalProps): ReactElement | null;
