import { WaterIntake } from '../../types/hydration'; import { ModuleConstructor } from '../types'; export declare function applyHydrationModule(Base: ModuleConstructor): { new (...args: any[]): { getDailyHydration(date?: Date): Promise; updateHydrationLogOunces(date: Date | undefined, valueInOz: number): Promise; client: import("../../../common/HttpClient").HttpClient; url: import("../../UrlClass").UrlClass; domain: import("../../types").GarminDomain; getUserProfile(): Promise; }; };