import type { axisPropsFromTickScale } from 'react-d3-axis-mod';
type Ticks = ReturnType<typeof axisPropsFromTickScale>;
declare const YScaleBar: ({ model, orientation, }: {
    model: {
        ticks?: Ticks;
    };
    orientation?: string;
}) => import("react/jsx-runtime").JSX.Element | null;
export default YScaleBar;
