declare const _default: import("vue").DefineComponent<{
    /**
     * The content in the accordion section.
     */
    content: StringConstructor;
    /**
     * The text that displays as the title of the section.
     */
    label: StringConstructor;
    /**
     * The unique section name to use with the active-section-name attribute in the accordion component.
     */
    name: {
        type: StringConstructor;
        required: true;
    };
}, unknown, unknown, {
    /**
     * Indicates whether the accordion section is open
     */
    isOpen(): boolean;
    /**
     * The CSS class names for the accordion section.
     */
    sectionClassNames(): string;
}, {
    /**
     * Handles the click event on the section label.
     */
    handleClickLabel(): void;
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
    /**
     * The content in the accordion section.
     */
    content: StringConstructor;
    /**
     * The text that displays as the title of the section.
     */
    label: StringConstructor;
    /**
     * The unique section name to use with the active-section-name attribute in the accordion component.
     */
    name: {
        type: StringConstructor;
        required: true;
    };
}>>, {}, {}>;
export default _default;
