import { PropertyImpl } from "../interfaces/impl"; import { Property } from "./property"; import { FloatValue } from "../values/float"; export declare class GeographicPosition extends Property implements PropertyImpl<[FloatValue, FloatValue]> { type: string; value: [FloatValue, FloatValue]; setValue(value: string): this; toString(): string; }