import { RefAttributes, Ref } from "react"; import { ForwardedRefComponent } from "../../types/components"; export interface OptionProps extends RefAttributes { value?: string; children?: string; disabled?: boolean; } export declare type OptionRef = Ref; declare const Option: ForwardedRefComponent; export { Option };