import type { SVGProps } from 'react'; import type { GridScale, GridLines, CommonGridProps } from '@visx/grid'; import type { TransitionConfig } from '../spring-configs/useLineTransitionConfig'; export 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): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=AnimatedGridLines.d.ts.map