export declare const MODEL_VERSION_1 = "1";
export declare const MODEL_VERSION_2 = "2";
export declare const MODEL_VERSION_3 = "3";
export declare const FEATURE_HAPTICS = "haptics";
export declare const FEATURE_ACCEL = "accel";
export declare const HAPTIC_P7 = "P7";
export declare const HAPTIC_P8 = "P8";
export declare const platformFeaturesByModelVersion: {
    1: any[];
    2: string[];
    3: string[];
};
export declare const platformConfigByModelVersion: {
    1: {};
    2: {
        motorByMotorName: {
            P7: any[];
            P8: any[];
        };
    };
    3: {
        motorByMotorName: {
            P7: any[];
            P8: any[];
        };
    };
};
export declare const supportsHaptics: (modelVersion: string) => boolean;
export declare const supportsAccel: (modelVersion: string) => boolean;
export declare const getPlatformHapticMotors: (modelVersion: string) => any;
