import { CustomElement } from "../../internal/custom-element.js"; import { PropertyValues, TemplateResult } from "lit"; declare global { interface HTMLElementTagNameMap { 'odx-blue-bar': OdxBlueBar; } } type BlueBarSize = (typeof BlueBarSize)[keyof typeof BlueBarSize]; declare const BlueBarSize: { MD: "md"; LG: "lg"; }; declare class OdxBlueBar extends CustomElement { static tagName: string; static styles: import("lit").CSSResult[]; size: BlueBarSize; protected render(): TemplateResult; protected updated(props: PropertyValues): void; } export { BlueBarSize, OdxBlueBar };