export interface Orientation { alpha: number; beta: number; gamma: number; } export interface RelativeOrientation { absolute: Orientation; relative: Orientation; } export declare const resetBaseOrientation: () => void; export declare const subscribeOrientation: (fn: (orientation: RelativeOrientation) => void) => (() => void); export declare const requestOrientationPermission: () => Promise; //# sourceMappingURL=orientation.d.ts.map