import * as React from 'react'; import { IHasChildren } from '@epam/uui-core'; export interface PortalProps extends IHasChildren { /** Element where portal content will be rendered * By default, it will be node with 'main' or 'root' id or document.body * */ target?: HTMLElement; /** Key of portal component */ key?: string; } export declare const Portal: React.FC; //# sourceMappingURL=Portal.d.ts.map