export type OptionGroup = { key: string; label: string; options: T[]; }; export type Option = { key: string; label: string; }; export declare const ALL_KEY = "all"; export declare const isAllOption: (option: Option | null | undefined) => boolean; export declare const getIsOptionSelected: (selectedOptions: T[], option: T) => boolean; //# sourceMappingURL=option.d.ts.map