import { Accessor } from "solid-js"; import { ElementType, HTMLHopeProps } from "../types"; import { SelectOptionData } from "./select.utils"; export interface SelectOptionContextValue { selected: Accessor; } declare type SelectOptionOptions = Required> & Partial>; export declare type SelectOptionProps = HTMLHopeProps; /** * The component that contains a select option. */ export declare function SelectOption(props: SelectOptionProps): import("solid-js").JSX.Element; export declare namespace SelectOption { var toString: () => string; } export declare function useSelectOptionContext(): SelectOptionContextValue; export {}; //# sourceMappingURL=select-option.d.ts.map