declare function __VLS_template(): {
    slots: {
        default?(_: {
            state: string;
        }): any;
    };
    refs: {
        root: unknown;
    };
    attrs: Partial<{}>;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
    when: {
        type: BooleanConstructor;
        required: true;
    };
    as: {
        type: StringConstructor;
        default: string;
    };
    transition: {
        type: StringConstructor;
    };
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
    expanding: (...args: any[]) => void;
    collapsing: (...args: any[]) => void;
    expanded: (...args: any[]) => void;
    collapsed: (...args: any[]) => void;
    init: (...args: any[]) => void;
    event: (...args: any[]) => void;
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
    when: {
        type: BooleanConstructor;
        required: true;
    };
    as: {
        type: StringConstructor;
        default: string;
    };
    transition: {
        type: StringConstructor;
    };
}>> & Readonly<{
    onExpanding?: (...args: any[]) => any;
    onCollapsing?: (...args: any[]) => any;
    onExpanded?: (...args: any[]) => any;
    onCollapsed?: (...args: any[]) => any;
    onInit?: (...args: any[]) => any;
    onEvent?: (...args: any[]) => any;
}>, {
    as: string;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
