import { ComponentPropsWithoutRef, RefObject } from 'react'; import { ValuePair } from '../../utilities/valuePair.js'; export type OptionProps = Omit, "aria-selected" | "children" | "role" | "type" | "value"> & ValuePair & { multiple?: boolean; selected?: boolean; selectRef: RefObject; }; export declare const Option: import('react').ForwardRefExoticComponent, HTMLButtonElement>, "ref">, "children" | "role" | "aria-selected" | "type" | "value"> & ValuePair & { multiple?: boolean; selected?: boolean; selectRef: RefObject; } & import('react').RefAttributes>;