export default SVGTrack;
declare class SVGTrack extends Track<any> {
    constructor(context: any, options: any);
    /**
     * Create a new SVG track. It will contain a g element
     * that maintains all of its element.
     */
    gMain: import("d3-selection").Selection<SVGGElement, any, null, undefined>;
    clipUid: string;
    clipRect: import("d3-selection").Selection<SVGRectElement, any, null, undefined>;
    setPosition(newPosition: any): void;
    setDimensions(newDimensions: any): void;
    draw(): this;
}
import Track from './Track';
