import { CityResponse } from '../types';
import City from './City';
export default class Enterprise extends City {
    constructor(response: CityResponse, ipAddress?: string, network?: string);
}
