import { AllGridRowsProps } from '@visx/grid/lib/grids/GridRows'; import type { AnyScale } from '../../types/scales.js'; export type GridRowsProps = { highlightZeroLine?: boolean; ticks?: number[]; } & AllGridRowsProps; export declare const GridRows: ({ scale, highlightZeroLine, ticks, ...restProps }: GridRowsProps) => import("react/jsx-runtime").JSX.Element;