export type GridLines = Array<{ from: { x?: number; y?: number; }; to: { x?: number; y?: number; }; index: number; }>; export type GridPointFrom = GridLines[number]['from']; export type GridPointTo = GridLines[number]['to']; export declare const DEFAULT_STROKE_WIDTH = "1px"; export declare const DEFAULT_STROKE_COLOR: string; export declare const HIGHLIGHTED_STROKE_WIDTH = "2px"; export declare const HIGHLIGHTED_STROKE_COLOR: string; export type GridLineProps = { from: GridPointFrom; to: GridPointTo; highlight?: boolean; }; export declare const GridLine: ({ from, to, highlight }: GridLineProps) => import("react/jsx-runtime").JSX.Element;