interface Display {
    height: number;
}
interface Track {
    displays: Display[];
}
export declare function totalHeight(tracks: Track[], textHeight: number, trackLabels: string): number;
export {};
