import { CustomElement } from "../../internal/custom-element.js"; import { TemplateResult } from "lit"; declare global { interface HTMLElementTagNameMap { 'odx-toggle-content': OdxToggleContent; } } /** * @summary Allows toggling the visibility of content with a smooth transition. * * @slot - The content to toggle. */ declare class OdxToggleContent extends CustomElement { static tagName: string; static styles: import("lit").CSSResult[]; /** * Indicates whether the content is expanded (visible) or collapsed (hidden). * * When `false`, the content will be hidden and {@link https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/inert | non-interactive}. */ expanded: boolean; protected render(): TemplateResult; } export { OdxToggleContent };