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