import type { AnyScale } from '../../types/scales.js'; export type GridRowsProps = { scale: AnyScale; width: number; numTicks?: number; offset?: number; highlightZeroLine?: boolean; ticks?: number[]; }; export declare const GridRows: ({ scale, width, numTicks, offset, highlightZeroLine, ticks, }: GridRowsProps) => import("react/jsx-runtime").JSX.Element;