import type { SExpr } from '../sexpr/types.js'; import type { ISchematicNode } from '../types/schematic_types.js'; import { Schematic } from '../schematic.js'; import { IVia } from './pcb_interfaces.js'; export interface NetMergeResult { allNets: SExpr[]; boardNetNameToCodeMap: Map; } export declare function mergeNets(schematic: Schematic | undefined, schematicNodes: ISchematicNode[] | undefined, existingBoardContents: SExpr[], viaMap: Map): NetMergeResult; //# sourceMappingURL=pcb_net_merger.d.ts.map