import Accessor from "@arcgis/core/core/Accessor.js";
export interface ILocationResponse {
    name: string;
    region: string;
    country: string;
    lat: number;
    lon: number;
    tz_id: string;
    localtime_epoch: number;
    localtime: string;
}
export default class LocationResponse extends Accessor implements ILocationResponse {
    name: string;
    region: string;
    country: string;
    lat: number;
    lon: number;
    tz_id: string;
    localtime_epoch: number;
    localtime: string;
    constructor(locationResponse: ILocationResponse);
}
