import type React from 'react';
import type { LinearGenomeViewModel } from '../index.ts';
type LGV = LinearGenomeViewModel;
interface ScalebarProps {
    model: LGV;
    style?: React.CSSProperties;
    className?: string;
}
declare const Scalebar: ({ model, style, className, ...other }: ScalebarProps) => import("react/jsx-runtime").JSX.Element;
export default Scalebar;
