import { type ReactElement } from "react"; type LineMode = "to-origin" | "to-anchor" | "polar"; type AbsoluteGridPickerProps = { readonly width: number; readonly height: number; readonly anchorX: number; readonly anchorY: number; readonly targetX: number; readonly targetY: number; readonly onChange: (x: number, y: number) => void; readonly lineMode?: LineMode; readonly title?: string; readonly anchorLabel?: string; readonly targetLabel?: string; }; export declare const AbsoluteGridPicker: ({ width, height, anchorX, anchorY, targetX, targetY, onChange, lineMode, title, anchorLabel, targetLabel, }: AbsoluteGridPickerProps) => ReactElement; export {};