import { IChartMarker } from "../../types";
/**
 * This class creates a ChartMarker based on provided data for svg path
 */
export declare class PathMarker implements IChartMarker {
    /** Resulting <path> HTMLElement */
    element: HTMLElement;
    protected svg: string;
    /**
     * Creates an instance of PathMarker.
     * @param {string} d value that has to be assigned to 'd' attribute of 'path' element in svg
     * @memberof PathMarker
     */
    constructor(d: string);
    setColor(color: string): void;
    private setAttributes;
    getSvg(): string;
    protected updateSvg(): void;
}
