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 `<body>`.
 * Renders a `<div>` element.
 *
 * Documentation: [Base UI Select](https://base-ui.com/react/components/select)
 */
export declare const SelectPortal: React.ForwardRefExoticComponent<Omit<SelectPortalProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
export interface SelectPortalState {}
export interface SelectPortalProps extends FloatingPortal.Props<SelectPortalState> {}
export declare namespace SelectPortal {
  type State = SelectPortalState;
  type Props = SelectPortalProps;
}