import { LitElement } from 'lit'; export declare class KpiBoxplotChart extends LitElement { data: any[]; groups: string[]; minKey: string; maxKey: string; meanKey: string; medianKey: string; q1Key: string; q3Key: string; valueKey: string; currentGroup: string; independentScale: boolean; static styles: import("lit").CSSResult; private chartWidth; private chartHeight; private resizeObserver?; render(): import("lit-html").TemplateResult<1>; connectedCallback(): void; disconnectedCallback(): void; updated(): void; private getOrgValue; drawBoxplot(): void; }