/// export interface OptionListContextOptions { id: string; selectedItems: string[]; allowMultiple: boolean; controlHidden: boolean; onChange(value: string[]): void; } export declare const OptionListContext: import("react").Context;