import { type ElementType } from 'react'; import type { SelectContentProps } from './types'; /** * Dropdown container that appears when select is open. Handles keyboard navigation, focus management, and outside click detection. Positioned using Floating UI. */ export declare const SelectContent: { ({ ref, side, align, container, onEscapeKeyDown, onPointerDownOutside, onCloseAutoFocus, as, onKeyDown, style, children, ...props }: SelectContentProps): import("react/jsx-runtime").JSX.Element; displayName: string; };