import type { AxisProps, AxisScale } from '@visx/axis'; import type { AnimationTrajectory } from '../types'; export type AnimatedAxisProps = Omit, 'ticksComponent'> & { animationTrajectory?: AnimationTrajectory; }; export default function AnimatedAxis({ animationTrajectory, tickComponent, ...axisProps }: AnimatedAxisProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=AnimatedAxis.d.ts.map