import { GridLines as VisxGridLines } from '@visx/grid/lib/types'; export type GridLinesProps = { lines: VisxGridLines; highlightAccessor?: (from: { x?: number; y?: number; }, to: { x?: number; y?: number; }) => boolean; }; export declare const GridLines: ({ lines, highlightAccessor, }: GridLinesProps) => import("react/jsx-runtime.js").JSX.Element;