import { CustomElement } from "../../internal/custom-element.js"; import { TemplateResult } from "lit"; declare global { interface HTMLElementTagNameMap { 'odx-logo-caption': OdxLogoCaption; } } declare const OdxLogoCaption_base: typeof CustomElement & (new (...args: any[]) => import("@lit-labs/signals").SignalWatcherApi); /** * @summary A component for rendering the caption of the Dräger logo in multiple languages. * @status rc * @since 1.0 */ declare class OdxLogoCaption extends OdxLogoCaption_base { static tagName: string; static styles: import("lit").CSSResult[]; /** * Indicates whether the caption should be stacked vertically. */ stacked: boolean; lang: string; protected render(): TemplateResult; } export { OdxLogoCaption };