import './line-chart.css';
export declare class LineChart {
    el: HTMLElement;
    data: number[];
    labels: string[];
    color: string;
    height: number;
    chartTitle?: string;
    componentDidLoad(): void;
    disconnectedCallback(): void;
    handleResize: () => void;
    parseArrayProp(prop: any): any[];
    getPoints(): string;
    render(): import("react/jsx-runtime").JSX.Element;
}
