import { BodyBatteryDailyEntry } from '../../types/body-battery'; import { ModuleConstructor } from '../types'; export declare function applyBodyBatteryModule(Base: ModuleConstructor): { new (...args: any[]): { getBodyBattery(startDate: Date | string, endDate: Date | string): Promise; client: import("../../../common/HttpClient").HttpClient; url: import("../../UrlClass").UrlClass; domain: import("../../types").GarminDomain; getUserProfile(): Promise; }; };