import { LocationData } from "../../../interfaces"; export declare class Location { private raw; constructor(raw?: LocationData); getRaw(): LocationData; setRaw(value: LocationData): this; setId(id: string): this; setLocation(lon: number, lat: number): this; }