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