import { Ref } from 'react'; import { Axis, AxisConfigInterface } from '@unovis/ts'; export declare type VisAxisRef = { component?: Axis; }; export declare type VisAxisProps = AxisConfigInterface & { data?: Datum[]; ref?: Ref>; }; export declare const VisAxisSelectors: typeof import("@unovis/ts/dist/components/axis/style"); export declare const VisAxis: ((props: VisAxisProps) => JSX.Element | null);