import type axisPropsFromTickScale from './axisPropsFromTickScale.ts';
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;
