import type { BluetoothContextType } from '../context'; import { BluetoothProbeEmitter } from '../emitter/BluetoothProbeEmitter'; import { DummyProbeEmitter } from '../emitter/DummyProbeEmitter'; export type MockCode = string; interface Params { bluetoothContext: BluetoothContextType | null; mockCode?: MockCode; onSuccess?: any; onError?: any; onBeginReading: any; probeCommand: string; interval?: number; } export declare const changeDatetime: ({ mockCode, bluetoothContext, onBeginReading, onSuccess, onError, probeCommand, interval, }: Params) => { unsubscribe: Function; run: Function; promise: null | Promise; probeEmitter: DummyProbeEmitter | BluetoothProbeEmitter; }; export {}; //# sourceMappingURL=changeDatetime.d.ts.map