import { LocationValue } from './location-object-value'; export declare class GPSWidgetValue { type: string; value: Array; note: string; constructor(gpsObject?: GPSWidgetValue); /** * set image widget value of object * * @returns */ getWidgetValue(): any; createNewGPSValue(): void; /** * function to create gps object with existing values * *@param gpsObject * */ createGPSValue(gpsObject: any): void; }