import type { BmsBalancingInput, BmsBalancingResult } from './types.js'; /** * Calculate BMS cell balancing time * * @formula time = (ΔV/Vavg × Ah × 1000) / ImA (minutes) * @reference BMS design guidelines, passive balancing * @param input - Cell voltages array, balancing current, cell capacity * @returns Balancing time estimates and cell-level details */ export declare function bmsBalancing(input: BmsBalancingInput): BmsBalancingResult; //# sourceMappingURL=bmsBalancing.d.ts.map