UNPKG

react-hoc-modal

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