import React from 'react'; import { LineProps } from '@vx/shape/lib/shapes/Line'; import { ScaleInput } from '@vx/scale'; import { CommonGridProps, GridScale } from '../types'; export declare type GridRowsProps = CommonGridProps & { /** `@vx/scale` or `d3-scale` object used to convert value to position. */ scale: Scale; /** * Exact values used to generate grid lines using `scale`. * Overrides `numTicks` if specified. */ tickValues?: ScaleInput[]; /** Total width of each grid row line. */ width: number; }; export declare type AllGridRowsProps = GridRowsProps & Omit, keyof LineProps>, keyof GridRowsProps>; export default function GridRows({ top, left, scale, width, stroke, strokeWidth, strokeDasharray, className, children, numTicks, lineStyle, offset, tickValues, ...restProps }: AllGridRowsProps): JSX.Element; //# sourceMappingURL=GridRows.d.ts.map