/** * Copyright 2025 Adobe. All rights reserved. * This file is licensed to you under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. You may obtain a copy * of the License at http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS * OF ANY KIND, either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ import { CSSResultArray, PropertyValues, TemplateResult } from '@spectrum-web-components/base'; import { Focusable } from '@spectrum-web-components/shared/src/focusable.js'; import '@spectrum-web-components/icons-ui/icons/sp-icon-chevron100.js'; declare const AccordionItem_base: typeof Focusable & { new (...args: any[]): import("@spectrum-web-components/base").SizedElementInterface; prototype: import("@spectrum-web-components/base").SizedElementInterface; } & import("@spectrum-web-components/core/shared/base/sizedMixin.js").SizedElementConstructor; /** * @element sp-accordion-item * @slot - The content of the item that is hidden when the item is not open * @fires sp-accordion-item-toggle - Announce that an accordion item has been toggled while allowing the event to be cancelled. */ export declare class AccordionItem extends AccordionItem_base { static get styles(): CSSResultArray; open: boolean; label: string; disabled: boolean; get focusElement(): HTMLElement; private onClick; private toggle; protected renderChevronIcon: () => TemplateResult; protected render(): TemplateResult; protected updated(changes: PropertyValues): void; } export {};