import * as React from 'react'; /** * A portal element that moves the popup to a different part of the DOM. * By default, the portal element is appended to `
`. * * Documentation: [Base UI Select](https://base-ui.com/react/components/select) */ declare function SelectPortal(props: SelectPortal.Props): React.JSX.Element; declare namespace SelectPortal { var propTypes: any; } declare namespace SelectPortal { interface Props { children?: React.ReactNode; /** * A parent element to render the portal element into. */ container?: HTMLElement | null | React.RefObject