import { CSSResultGroup, TemplateResult } from 'lit'; import { SbbElement } from '../core/base-elements.ts'; import { SbbProtectiveRoom } from '../core/interfaces.ts'; declare const SbbLogoElement_base: import('../core/mixins.ts').AbstractConstructor & typeof SbbElement; /** * 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 readonly elementName: string; static styles: CSSResultGroup; /** Visual protective room around logo. */ accessor protectiveRoom: SbbProtectiveRoom; /** Accessibility label which will be forwarded to the SVG logo. */ accessor accessibilityLabel: string; protected render(): TemplateResult; } declare global { interface HTMLElementTagNameMap { 'sbb-logo': SbbLogoElement; } } export {}; //# sourceMappingURL=logo.component.d.ts.map