UNPKG

react-hoc-modal

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