import ICCHardware from "../../../modules/hardware/Hardware"; import { IAddListenerParams, IRemoveListenerParams } from "../../../modules/IModule"; declare class HardwareImpl implements ICCHardware { private static instance; private constructor(); static getModule(): HardwareImpl; addDeviceMotionListener(obj: IAddListenerParams): void; removeDeviceMotionListener(obj: IRemoveListenerParams): void; } export default HardwareImpl;