export default ChromosomeGrid;
declare class ChromosomeGrid extends TiledPixiTrack<any> {
    constructor(context: any, options: any);
    chromInfo: any;
    animate: any;
    orientation: any;
    isOverlay: any;
    texts: any[] | undefined;
    lineGraphics: import("pixi.js").Graphics | undefined;
    lineGraphics1dH: import("pixi.js").Graphics | undefined;
    lineGraphics1dV: import("pixi.js").Graphics | undefined;
    lineGraphics2d: import("pixi.js").Graphics | undefined;
    mask1dH: import("pixi.js").Graphics | undefined;
    mask1dV: import("pixi.js").Graphics | undefined;
    mask2d: import("pixi.js").Graphics | undefined;
    calculateVisibleTiles(): never[];
    drawLines(orientation?: any, left?: number, top?: number): void;
    setPosition(newPosition: any): void;
    zoomed(newXScale: any, newYScale: any): void;
    createSvgLine(x1: any, x2: any, y1: any, y2: any, stroke: any, strokeWidth: any): HTMLElement;
    drawLinesSvg(output: any, orientation: any, width: any, height: any, left?: number, top?: number): void;
    exportSVG(): HTMLElement[];
}
import TiledPixiTrack from './TiledPixiTrack';
