import type { AwgInput, AwgResult } from './types.js'; /** * Calculate AWG wire properties * AWG diameter formula: d(mm) = 0.127 × 92^((36-AWG)/39) * @param input - AWG gauge number, material, and temperature * @returns Wire properties * @throws {RangeError} If AWG is not between 0 and 40 * @reference ASTM B258 — Standard Specification for Standard Nominal Diameters and * Cross-Sectional Areas of AWG Sizes of Solid Round Wires Used as Electrical Conductors * (the geometric diameter series this formula reproduces) */ export declare function awgProperties(input: AwgInput): AwgResult; //# sourceMappingURL=awg.d.ts.map