export declare enum InjectionKey { SelectInjection = "FrySelectInjection" } export interface SelectInjection { HideList(): void; UpdateValue: (v: value) => void; } export type value = string | number; export interface Options { value: value; label: any; }