import type { FieldValue } from "./field-value.js"; export declare class CoordsValue implements FieldValue { private readonly coordinates; constructor(coordinates: [number, number]); toTuple(): [number, number]; toObject(): { lat: number; lon: number; }; toString(): string; getRestAPIValue(): [number, number]; }