export declare type GNI = [string, string, string]; export declare abstract class Ping { gameId: string; networkId: string; instanceId: string; playerId: string; appLocator: string; constructor(ping: string); toString(): string; abstract get isValid(): boolean; matchGNI([gameId, networkId, instanceId]: GNI): boolean; } export declare class LivePing extends Ping { get isValid(): boolean; } export declare class QAPing extends Ping { get isValid(): boolean; }