UNPKG

react-hoc-modal

Version:
10 lines (9 loc) 412 B
/// <reference types="react" /> import type { TModal } from "./types"; declare const Container: import("react").ForwardRefExoticComponent<import("./types").TConfig & { name: string; title: string; children: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>; onHide?: (() => void) | undefined; } & import("react").RefAttributes<TModal>>; export { Container };