import { CSSResultGroup, TemplateResult, LitElement } from 'lit'; import { SbbProtectiveRoom } from '../core/interfaces.js'; /** * It displays the SBB signet. */ export declare class SbbSignetElement extends LitElement { static styles: CSSResultGroup; /** Visual protective room around signet. */ protectiveRoom?: SbbProtectiveRoom; /** Accessibility label which will be forwarded to the inner SVG signet. */ accessibilityLabel: string; protected render(): TemplateResult; } declare global { interface HTMLElementTagNameMap { 'sbb-signet': SbbSignetElement; } } //# sourceMappingURL=signet.d.ts.map