/** * Schematic drawers — passives. */ import type { App } from '../../../App'; import type { Group } from '../../../shapes/Group'; export declare function drawResistor(app: App, g: Group, variant?: 'fixed' | 'variable' | 'pot' | 'thermNtc' | 'thermPtc' | 'ldr' | 'mov'): void; export declare function drawCapacitor(app: App, g: Group, variant?: 'np' | 'electrolytic' | 'variable'): void; export declare function drawInductor(app: App, g: Group, variant?: 'fixed' | 'variable' | 'ferrite' | 'rf'): void; export declare function drawCrystal(app: App, g: Group, ceramic?: boolean): void; export declare function drawTransformer(app: App, g: Group, auto?: boolean): void;