import type { LayoutQaInput, LayoutQaIssue } from './schematic-layout-qa.js'; export interface LayoutQaTopologyThresholds { relatedComponentDistance: number; excessiveWireLength: number; } export declare function collectSchematicLayoutTopologyIssues(input: LayoutQaInput, thresholds: LayoutQaTopologyThresholds): LayoutQaIssue[];