import * as React from 'react'; import { PolymorphicComponent } from './_shared'; export declare type PortalProps = { /** * Components to portal render at the document.body scope. */ children?: React.ReactNode; }; /** * `Portal` is an abstract wrapper component that uses React Portals underneath. * It can be used to put anything in a portal and supports nested portals. * * @see https://reakit.io/docs/portal/ * * @example * ```jsx * ... * ``` */ export declare const Portal: PolymorphicComponent<'div', PortalProps>;