import { GdsElement } from '../../gds-element'; /** * @element gds-signal */ export declare class GdsSignal extends GdsElement { static styles: (import("lit").CSSResult | import("lit").CSSResult[])[]; /** * Change signal color based on variant. * The color can be customized using the `color` property. */ color?: string; render(): import("lit-html").TemplateResult; }