import { EServicePINGApplicationType } from './EServicePINGApplicationType.js';
import { EServicePINGFeatures } from './EServicePINGFeatures.js';
export interface IPacketPingData {
    applicationType: EServicePINGApplicationType;
    features: Array<EServicePINGFeatures>;
    bitFeatureEx: number;
    PreferredRate: number;
    minRate: number;
    maxRate: number;
    color: {
        red: number;
        green: number;
        blue: number;
    };
    nVersion: number;
    GPSPosition: string;
    userPosition: string;
    langCode: string;
    reservedASCII: string;
    reservedEx: string;
    reservedEx2: string;
    deviceName: string;
    manufacturerName: string;
    applicationName: string;
    hostname: string;
    userName: string;
    userComment: string;
}
