/** * Diode/LED SPICE model library — typed data with provenance, not manufacturer-certified * parameters. See each entry's `caveat` before trusting a result derived from it. * * @module */ export interface DiodeModelEntry { name: string; displayName: string; /** Parameters for a SPICE `.model NAME D (...)` card, ngspice-compatible. */ params: Record; source: string; caveat: string; } export declare const DIODE_MODELS: Record; export declare function getDiodeModel(name: string): DiodeModelEntry; export declare function listDiodeModels(): DiodeModelEntry[];