UNPKG

next

Version:

The React Framework

8 lines (7 loc) 218 B
/// <reference types="react" /> type PortalProps = { children: React.ReactNode; type: string; }; export declare const Portal: ({ children, type }: PortalProps) => import("react").ReactPortal | null; export {};