import * as React from 'react'; import { FloatingPortal } from "../../floating-ui-react/index.js"; /** * A portal element that moves the popup to a different part of the DOM. * By default, the portal element is appended to ``. * Renders a `
` element. * * Documentation: [Base UI Select](https://base-ui.com/react/components/select) */ export declare const SelectPortal: React.ForwardRefExoticComponent>; export declare namespace SelectPortal { interface State {} } export interface SelectPortalProps extends FloatingPortal.Props {} export declare namespace SelectPortal { type Props = SelectPortalProps; }