import { SVGProps } from 'react'; import { GridScale, GridLines, CommonGridProps } from '@visx/grid/lib/types'; import { TransitionConfig } from '../spring-configs/useLineTransitionConfig'; export declare type AnimatedGridLinesProps = { lines: GridLines; lineKey: (line: GridLines[number]) => string; scale: Scale; } & Omit, 'ref' | 'scale'> & Pick, 'animationTrajectory' | 'animateXOrY'> & Pick; export default function AnimatedGridLines({ scale, lines, animationTrajectory, animateXOrY, lineKey, lineStyle, ...lineProps }: AnimatedGridLinesProps): JSX.Element; //# sourceMappingURL=AnimatedGridLines.d.ts.map