import * as React from 'react'; import { type BaseUIComponentProps } from "../../internals/types.mjs"; /** * 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 & React.RefAttributes>; export interface SelectPortalState {} export interface SelectPortalProps extends BaseUIComponentProps<'div', SelectPortalState> { /** * A parent element to render the portal element into. */ container?: HTMLElement | ShadowRoot | React.RefObject | null | undefined; } export declare namespace SelectPortal { type State = SelectPortalState; type Props = SelectPortalProps; }