import { InjectionKey, Ref } from 'vue';
export declare const collapseInjectKey: InjectionKey<{
    computedValue: Ref<Array<string | number>>;
    handleItemClick: (val: string | number, e: Event) => void;
}>;
