import { GridProps as VisxGridProps } from '@visx/grid/lib/grids/Grid'; import type { AnyScale } from '../../types/scales.js'; export type GridProps = VisxGridProps & { highlightZeroLine?: { horizontal?: boolean; vertical?: boolean; }; xTicks?: number[]; yTicks?: number[]; xCategoryOffset?: number; yCategoryOffset?: number; }; /** * The grid columns component for charts */ export declare function Grid({ width, height, xScale, yScale, highlightZeroLine, xTicks, yTicks, xCategoryOffset, yCategoryOffset, }: GridProps): import("react/jsx-runtime").JSX.Element;