export declare class IPProtocolVersion { static readonly IPV4: number; static readonly IPV6: number; static getVersion(ipAddress?: string): number; } export declare class ClientIP { type: IPProtocolVersion; address: string; constructor(ipAddress?: string); }