Constants: {
    AxisTouchThreshold: number;
    ButtonTouchThreshold: number;
    ComponentProperty: Readonly<{
        BUTTON: "button";
        STATE: "state";
        X_AXIS: "xAxis";
        Y_AXIS: "yAxis";
    }>;
    ComponentState: Readonly<{
        DEFAULT: "default";
        PRESSED: "pressed";
        TOUCHED: "touched";
    }>;
    ComponentType: Readonly<{
        BUTTON: "button";
        SQUEEZE: "squeeze";
        THUMBSTICK: "thumbstick";
        TOUCHPAD: "touchpad";
        TRIGGER: "trigger";
    }>;
    Handedness: Readonly<{
        LEFT: "left";
        NONE: "none";
        RIGHT: "right";
    }>;
    VisualResponseProperty: Readonly<{
        TRANSFORM: "transform";
        VISIBILITY: "visibility";
    }>;
} = ...