import { IgrDataAnnotationPointLayer, IIgrDataAnnotationPointLayerProps } from "./igr-data-annotation-point-layer";
import { DataAnnotationLineLayer } from "./DataAnnotationLineLayer";
/**
 * Represents an annotation layer that renders lines at locations of x/y values mapped to these properties:
 * StartValueXMemberPath
 * StartValueYMemberPath
 * EndValueXMemberPath
 * EndValueYMemberPath
*/
export declare class IgrDataAnnotationLineLayer extends IgrDataAnnotationPointLayer<IIgrDataAnnotationLineLayerProps> {
    protected createImplementation(): DataAnnotationLineLayer;
    /**
                                 * @hidden
                                 */
    get i(): DataAnnotationLineLayer;
    constructor(props: IIgrDataAnnotationLineLayerProps);
}
export interface IIgrDataAnnotationLineLayerProps extends IIgrDataAnnotationPointLayerProps {
}
