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