export const DEFAULT_TRACKS_FOR_DATATYPE: {
    readonly chromsizes: {
        readonly center: "2d-chromosome-grid";
        readonly top: "chromosome-labels";
        readonly left: "chromosome-labels";
        readonly bottom: "chromosome-labels";
        readonly right: "chromosome-labels";
    };
    readonly matrix: {
        readonly center: "heatmap";
        readonly top: "linear-heatmap";
        readonly left: "linear-heatmap";
        readonly right: "linear-heatmap";
        readonly bottom: "linear-heatmap";
    };
    readonly vector: {
        readonly top: "bar";
        readonly bottom: "bar";
        readonly left: "bar";
        readonly right: "bar";
    };
    readonly 'geo-json': {
        readonly center: "geo-json";
    };
    readonly 'gene-annotation': {
        readonly top: "gene-annotations";
        readonly bottom: "gene-annotations";
        readonly left: "gene-annotations";
        readonly right: "gene-annotations";
    };
    readonly bedlike: {
        readonly top: "bedlike";
        readonly bottom: "bedlike";
        readonly left: "vertical-bedlike";
        readonly right: "vertical-bedlike";
    };
};
export default DEFAULT_TRACKS_FOR_DATATYPE;
