import React from 'react'; import type { ComponentPropsWithRef, ComponentRef } from 'react'; declare const portalEl = "div"; export type PortalRef = ComponentRef; export type PortalProps = { /** Контейнер для монтирования портала */ container?: Element | DocumentFragment | null; isTop?: boolean; } & ComponentPropsWithRef; export declare const Portal: React.ForwardRefExoticComponent & React.RefAttributes>; export {};