import { type ElementType } from 'react'; import type { SelectItemProps } from './types'; /** * Individual selectable option within the select dropdown. Handles selection state, focus, and accessibility. */ export declare const SelectItem: { ({ value, disabled, label: providedLabel, ref, as, onPointerMove, onClick, children, ...props }: SelectItemProps): import("react/jsx-runtime").JSX.Element; displayName: string; };