import { CSSResultGroup, TemplateResult, LitElement } from 'lit'; import { SbbProtectiveRoom } from '../core/interfaces.js'; declare const SbbLogoElement_base: import('../core/mixins.js').AbstractConstructor & typeof LitElement; /** * It displays the SBB logo. * * @cssprop [--sbb-logo-height=auto] - Can be used to set the height of the logo. */ export declare class SbbLogoElement extends SbbLogoElement_base { static styles: CSSResultGroup; /** Visual protective room around logo. */ protectiveRoom?: SbbProtectiveRoom; /** Accessibility label which will be forwarded to the SVG logo. */ accessibilityLabel: string; protected render(): TemplateResult; } declare global { interface HTMLElementTagNameMap { 'sbb-logo': SbbLogoElement; } } export {}; //# sourceMappingURL=logo.d.ts.map