UNPKG

@chatui/core

Version:

The React library for Chatbot UI

9 lines (8 loc) 295 B
type Container = React.RefObject<any> | Element | (() => Element) | null; export interface PortalProps { container?: Container; onRendered?: () => void; children?: React.ReactNode; } export declare const Portal: (props: PortalProps) => import("react").ReactPortal | null; export {};