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