import type { OhmsLawInput, OhmsLawResult } from './types.js'; /** * Ohm's Law Calculator — V = I × R, P = V × I * * Solves for any one of voltage, current, resistance, or power * given the other two known quantities. * * @throws {RangeError} Current must be positive * @throws {RangeError} Resistance must be positive * @throws {RangeError} Voltage must be non-negative * @param input - discriminated union by `solveFor` * @returns all four electrical quantities */ export declare function ohmsLaw(input: OhmsLawInput): OhmsLawResult; //# sourceMappingURL=ohmsLaw.d.ts.map