import { CoreWebXRControllerOptions } from '../Common';
export declare enum WebXRVRFeature {
    LOCAL_FLOOR = "local-floor",
    BOUNDED_FLOOR = "bounded-floor",
    HAND_TRACKING = "hand-tracking",
    LAYERS = "layers"
}
export declare const WEBXR_VR_FEATURES: WebXRVRFeature[];
export interface CoreWebXRVRControllerOptions extends CoreWebXRControllerOptions {
    requiredFeatures: WebXRVRFeature[];
    optionalFeatures: WebXRVRFeature[];
}
