import { HTMLAttributes, ReactNode } from 'react'; export interface PortalProps extends HTMLAttributes { /** Portal content */ children: ReactNode; /** If provided, id of your application root */ feAppId?: string; /** If true, makes the browser "ignore" user input/focus events on the app-root */ feAppInert?: boolean; /** If true, renders the component */ feRender?: boolean; /** If provided, DOM element/selector where the Portal should render */ feTarget?: string; } /** * The `` component is a layout container that renders outside the app-root. */ declare const Portal: import("react").ForwardRefExoticComponent>; export default Portal;