declare const _default: import("vue").DefineComponent<{
    /**
     * The unique identifier of the collapsible item, used for determining if the item is open or not
     * @type String
     * @default uid()
     * @name name
     */
    name: {
        type: StringConstructor;
        default: () => string;
    };
    /**
     * The title of the collapsible item
     * @type String
     * @default
     * @name title
     */
    title: {
        type: StringConstructor;
        default: string;
    };
}, {
    active: import("vue").ComputedRef<any>;
    classes: import("vue").ComputedRef<{
        '-active': any;
    }>;
    onClick: () => void;
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
    /**
     * The unique identifier of the collapsible item, used for determining if the item is open or not
     * @type String
     * @default uid()
     * @name name
     */
    name: {
        type: StringConstructor;
        default: () => string;
    };
    /**
     * The title of the collapsible item
     * @type String
     * @default
     * @name title
     */
    title: {
        type: StringConstructor;
        default: string;
    };
}>>, {
    title: string;
    name: string;
}, {}>;
export default _default;
