import type React from 'react';
import type { LinearGenomeViewModel } from '..';
type LGV = LinearGenomeViewModel;
interface ScalebarProps {
    model: LGV;
    style?: React.CSSProperties;
    className?: string;
}
declare const Scalebar: React.ForwardRefExoticComponent<ScalebarProps & React.RefAttributes<HTMLDivElement>>;
export default Scalebar;
