import { WebPlugin } from '@capacitor/core'; import type { BackgroundstepPlugin, PermissionResultInterface, StepDataInterface, resultInterface } from './definitions'; export declare class BackgroundstepWeb extends WebPlugin implements BackgroundstepPlugin { checkAndRequestPermission(): Promise; serviceStart(): Promise; serviceStop(): Promise; echo(options: { value: string; }): Promise<{ value: string; }>; getToday(): Promise; getStepData(options: { sDateTime: string; eDateTime: string; }): Promise; }