import * as mmdb from 'maxmind';
export default class Asn {
    readonly autonomousSystemNumber?: number;
    readonly autonomousSystemOrganization?: string;
    ipAddress?: string;
    network?: string;
    constructor(response: mmdb.AsnResponse, ipAddress?: string, network?: string);
}
