import type { LinearGenomeViewModel } from '..';
import type { AnyConfigurationModel } from '@jbrowse/core/configuration';
type LGV = LinearGenomeViewModel;
interface DisplayResult {
    track: {
        configuration: AnyConfigurationModel;
        displays: {
            height: number;
        }[];
    };
    result: string;
}
export default function SVGTracks({ displayResults, model, textHeight, fontSize, trackLabels, trackLabelOffset, }: {
    displayResults: DisplayResult[];
    model: LGV;
    textHeight: number;
    fontSize: number;
    trackLabels?: string;
    trackLabelOffset?: number;
}): import("react/jsx-runtime").JSX.Element;
export {};
