import { InjectionKey, Ref } from 'vue'; export interface IncludeExcludeContextProps { activeIndex: Ref; activeOption: Ref; resetInput: () => void; selectedOption: Ref; clearable: boolean; listRef: Ref; options: Ref<{ id: string; disabled?: boolean; }[]>; open: Ref; disabled: boolean; search: (term: string) => void; toggle: (value?: boolean) => void; select?: (option: unknown) => void; removeSelection?: (option: unknown) => void; query: Ref; } export declare const IncludeExcludeContext: InjectionKey; export declare function useIncludeExcludeContext(component: string): IncludeExcludeContextProps;