import type { CapacitorCodeInput, CapacitorCodeResult } from './types.js'; /** * Round to specified decimal places */ /** * Decode a 3-digit capacitor code to capacitance values * @param input - The 3-digit capacitor code (e.g., "104") * @returns Capacitance in pF, nF, and µF with formatted output * @throws Error if code is invalid */ export declare function capacitorDecode(input: CapacitorCodeInput): CapacitorCodeResult; //# sourceMappingURL=capacitor.d.ts.map