import { ReactNode, FC } from "react"; export interface PortalProps { children: ReactNode; } declare const usePortal: (el: HTMLElement | null) => FC; export { usePortal };