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