import { ReactNode } from 'react'; import './index.less'; interface Props { isShow?: boolean; styles?: { backgroundColor: string; }; children: ReactNode; onClose?(): void; } declare const ModalWrapper: (props: Props) => JSX.Element; export default ModalWrapper;