import { Ref } from 'vue'; export interface Props { mode?: string; modeValue?: string | string[]; expand?: boolean; accordion?: boolean; flex?: boolean; } export interface IStore { addChild: (name: string) => void; allChildren: Ref; activeValue: Ref; setActiveValues: (name: any) => void; pProps: Props; } declare function __VLS_template(): { default?(_: {}): any; }; declare const __VLS_component: import("vue").DefineComponent void; "update:modelValue": (...args: any[]) => void; }, string, import("vue").PublicProps, Readonly & Readonly<{ onChange?: (...args: any[]) => any; "onUpdate:modelValue"?: (...args: any[]) => any; }>, { mode: string; flex: boolean; expand: boolean; accordion: boolean; modeValue: string | string[]; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>; declare const _default: __VLS_WithTemplateSlots>; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };