import type { Source } from '../types';
interface ReducedModel {
    scrollTop: number;
    totalHeight: number;
    rowHeight: number;
    lineZoneHeight?: number;
    sources?: Source[];
    canDisplayLabels: boolean;
    height: number;
    samplePloidy?: Record<string, number>;
    id: string;
}
export declare const LegendBar: (props: {
    model: ReducedModel;
    orientation?: string;
    exportSVG?: boolean;
}) => import("react/jsx-runtime").JSX.Element | null;
export default LegendBar;
