import type { ChargingProfileInput, ChargingProfileResult } from './types.js'; /** * Calculate CC-CV charging profile timing * * @formula CC: t = ccAh / I, CV: t ≈ cvAh / ((Icc + Icut) / 2) * @reference Li-ion CC-CV charging protocol * @param input - Battery capacity, charging current, cutoff current, CC end SOC * @returns Phase durations, Ah delivered per phase, average C-rate */ export declare function chargingProfile(input: ChargingProfileInput): ChargingProfileResult; //# sourceMappingURL=chargingProfile.d.ts.map