/** * Copyright (c) Cisco Systems, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * */ import { LitElement, PropertyValues } from "lit"; export declare class SassStats extends LitElement { component: string; size: string; gzipSize: string; selectors: string; declarations: string; repeatedSelectors: never[]; static get styles(): import("lit").CSSResult[]; protected firstUpdated(changedProperties: PropertyValues): void; private loopInstances; private getContrast; private formatNumber; private fetchComponentStats; connectedCallback(): void; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { "sass-stats": SassStats; } }