import type { ResistorBands, ResistorResult } from './types.js'; /** * Decode resistor color bands to get resistance value * @param input - Resistor band information (count and colors) * @returns Decoded resistance, tolerance, and formatted string * @throws {RangeError} bandCount not 4/5/6, missing bands, gold/silver used as a digit, * or an unknown color in a digit/multiplier/tolerance/tempCoeff position */ export declare function resistorDecode(input: ResistorBands): ResistorResult; //# sourceMappingURL=resistor.d.ts.map