import * as React from 'react';
import { Portal } from '../../portal/Portal.js';
/**
 * A portal element that moves the popup to a different part of the DOM.
 * By default, the portal element is appended to `<body>`.
 *
 * 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 extends Omit<Portal.Props, 'keepMounted'> {
    }
    interface State extends Portal.State {
    }
}
export { SelectPortal };
