import type { Schematic } from "../schematic.js"; import type { Power } from "../buses.js"; import type { NgspiceResult } from "./types.js"; export declare class SimulationContext { private schematic; private powers; constructor(schematic: Schematic, powers: Power[]); tran(tstep: string, tstop: string, tstart?: string, tmax?: string, uic?: boolean): void; op(): NgspiceResult | null; private run; private findNgspiceExecutable; private parseNgspiceAscii; private displayTable; } //# sourceMappingURL=ngspice.d.ts.map