import { LitElement } from "lit";
declare class SLSummary extends LitElement {
    netWorth: string;
    returnOnInvestment: string;
    changeFromLastClose: string;
    diversificationScore: number;
    title: string;
    private showProgressBar;
    private score;
    static styles: import("lit").CSSResult[];
    firstUpdated(): void;
    calculateDiversificationScore(): void;
    updated(changedProperties: Map<string | number | symbol, unknown>): void;
    setData(): void;
    render(): import("lit-html").TemplateResult<1>;
}
declare global {
    interface HTMLElementTagNameMap {
        "sl-summary": SLSummary;
    }
}
export {};
