import { CSSResultGroup, TemplateResult } from 'lit'; import { SbbElement } from '../core.ts'; declare const SbbLogoElement_base: import('../core.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: 'none' | 'minimal' | 'ideal'; /** 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