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