export type PointProps = { /** Current x, in [min, max]. */ readonly x: number; /** Current y, in [min, max]; drawn bottom-to-top (y-up). */ readonly y: number; /** Slider range for both axes. */ readonly min: number; readonly max: number; readonly step?: number; /** Emitted on either axis change with the full (x, y). */ readonly onChange: (x: number, y: number) => void; /** Short caption above the box (e.g. the vertex index). */ readonly label?: string; readonly disabled?: boolean; /** Base test id; the x slider appends `.x`, the y slider `.y`. */ readonly testID?: string; }; export declare function Point({ x, y, min, max, step, onChange, label, disabled, testID, }: PointProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=point.d.ts.map