import { FC } from 'react';

export interface LinearAxisTickLineProps {
    height: number;
    width: number;
    orientation: 'horizontal' | 'vertical';
    size: number;
    strokeColor?: string;
    strokeWidth: number;
    position: 'start' | 'end' | 'center';
    className?: string;
}
export declare const LinearAxisTickLine: FC<Partial<LinearAxisTickLineProps>>;
export declare const LINEAR_AXIS_TICK_LINE_DEFAULT_PROPS: {
    strokeColor: string;
    strokeWidth: number;
    size: number;
};
