import mmdb = require('maxmind');
import Asn from './Asn';
export default class Isp extends Asn {
    readonly isp: string;
    readonly mobileCountryCode?: string;
    readonly mobileNetworkCode?: string;
    readonly organization: string;
    constructor(response: mmdb.IspResponse, ipAddress?: string, network?: string);
}
