export declare class LocationValue { longitude: number; latitude: number; constructor(locationValue?: LocationValue); createNewLocationValue(): void; /**function to create location value with existing value * *@param locationValue * */ createLocationValue(locationValue?: any): void; }