import { PluggableBaseChart } from "../baseChart/PluggableBaseChart";
import { IReferencePoint, IExtendedReferencePoint, IVisConstruct } from "../../../interfaces/Visualization";
export declare class PluggableLineChart extends PluggableBaseChart {
    constructor(props: IVisConstruct);
    getSupportedPropertiesList(): string[];
    getExtendedReferencePoint(referencePoint: IReferencePoint): Promise<IExtendedReferencePoint>;
    protected renderConfigurationPanel(): void;
}
