import { ReactNode } from 'react'; export interface PortalProps { /** * Portal z-index hierachy */ zIndex?: number; /** * Target where portal will render it's children */ target?: HTMLElement | string; /** * Whether to render the target element in a Portal */ disablePortal?: boolean; /** * Children - any React node */ children: ReactNode; } export declare function Portal({ target, zIndex, disablePortal, children, }: PortalProps): JSX.Element; export declare namespace Portal { var displayName: string; } //# sourceMappingURL=Portal.d.ts.map