import { BAccordionProps } from '../../types/ComponentProps';
type __VLS_Props = Omit<BAccordionProps, 'modelValue' | 'index'>;
type __VLS_PublicProps = {
    modelValue?: BAccordionProps['modelValue'];
    'index'?: BAccordionProps['index'];
} & __VLS_Props;
declare function __VLS_template(): {
    attrs: Partial<{}>;
    slots: Readonly<{
        default?: (props: Record<string, never>) => any;
    }> & {
        default?: (props: Record<string, never>) => any;
    };
    refs: {};
    rootEl: HTMLDivElement;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
    "update:modelValue": (value: string | string[] | undefined) => any;
    "update:index": (value: number | number[] | undefined) => any;
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
    "onUpdate:modelValue"?: ((value: string | string[] | undefined) => any) | undefined;
    "onUpdate:index"?: ((value: number | number[] | undefined) => any) | undefined;
}>, {
    id: string;
    lazy: boolean;
    initialAnimation: boolean;
    unmountLazy: boolean;
    flush: boolean;
    free: boolean;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
