import { CSSResultGroup, TemplateResult } from 'lit'; import { SbbElement } from '../core/base-elements.ts'; import { SbbProtectiveRoom } from '../core/interfaces.ts'; export type SbbSignetProtectiveRoom = SbbProtectiveRoom | 'panel'; /** * It displays the SBB signet. * * @cssprop [--sbb-signet-height=auto] - Can be used to set the height of the signet. */ export declare class SbbSignetElement extends SbbElement { static readonly elementName: string; static styles: CSSResultGroup; /** Visual protective room around signet. */ accessor protectiveRoom: SbbSignetProtectiveRoom; /** Accessibility label which will be forwarded to the inner SVG signet. */ accessor accessibilityLabel: string; protected render(): TemplateResult; } declare global { interface HTMLElementTagNameMap { 'sbb-signet': SbbSignetElement; } } //# sourceMappingURL=signet.component.d.ts.map