import type { ComputedRef, InjectionKey } from 'vue';
export declare type SidebarContext = {
handleClickItem: (id: string) => void;
modelValue: ComputedRef<string>;
reduce: ComputedRef<boolean>;
};
export declare const sidebarContextKey: InjectionKey<SidebarContext>;