/// /** * Hook that mimic the React createPortal function in order to make it SSR friendly */ export declare function useCreatePortal(disable?: boolean): ((children: React.ReactNode) => any) | ((children: React.ReactNode, container?: Element | DocumentFragment, key?: string | null) => import("react").ReactPortal);