import React from 'react'; import ReactModal from 'react-modal'; import { CardProps } from '../../organisms/Card/Card/Card'; export interface ModalProps extends ReactModal.Props { showCloseButton?: boolean; hideBackground?: boolean; children: React.ReactElement; } declare const _default: (({ children, onRequestClose, showCloseButton, hideBackground, ...rest }: ModalProps) => JSX.Element) & { setAppElement: typeof ReactModal.setAppElement; Styles: import("styled-components").GlobalStyleComponent; }; export default _default;