import type React from 'react'; export interface PortalRenderOptions { getContainer?: () => HTMLElement; } export declare const render: (jsx: React.ReactElement, options?: PortalRenderOptions) => () => void;