UNPKG

react-hoc-modal

Version:
9 lines (8 loc) 315 B
import { ModalProps, TPropsRender } from "../types"; interface DefaultModalProps extends ModalProps { onBackground: () => void; onClose: () => void; renderProps: TPropsRender; } declare const Popup: ({ onBackground, onClose, renderProps, ...props }: DefaultModalProps) => JSX.Element; export { Popup };