export class DeviceOrientationControls extends EventDispatcher<any> {
    constructor(object: any);
    object: any;
    enabled: boolean;
    deviceOrientation: {};
    screenOrientation: number;
    alphaOffset: number;
    connect: () => void;
    disconnect: () => void;
    update: () => void;
    dispose: () => void;
}
import { EventDispatcher } from 'three';
