import { LitElement, PropertyValues } from 'lit'; type IsotypeColor = 'base' | 'brand' | 'accent'; type IsotypeTone = 'light' | 'dark'; export declare class Isotype extends LitElement { color: IsotypeColor; size: number; tone: IsotypeTone; label?: string; static styles: import('lit').CSSResult[]; updated(changedProperties: PropertyValues): void; render(): import('lit').TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'gv-isotype': Isotype; } } export {}; //# sourceMappingURL=Isotype.d.ts.map