import { CSSResultGroup, TemplateResult } from 'lit'; import { SbbElement } from '../../core/base-elements.ts'; /** * It displays a ribbon inside the header to indicate the current environment. * * @slot - Use the unnamed slot to add the environment. * * @cssprop [--sbb-header-environment-background-color=var(sbb-color-granite)] - Can be used change the ribbon color. * @cssprop [--sbb-header-environment-color=var(sbb-color-white)] - Can be used change the text color. */ export declare class SbbHeaderEnvironmentElement extends SbbElement { static readonly elementName: string; static styles: CSSResultGroup; private _env; constructor(); private _slottedTextChange; protected render(): TemplateResult; } declare global { interface HTMLElementTagNameMap { 'sbb-header-environment': SbbHeaderEnvironmentElement; } } //# sourceMappingURL=header-environment.component.d.ts.map