import type { LayoutQaInput, LayoutQaIssue } from './schematic-layout-qa.js'; export interface LayoutQaGeometryThresholds { componentClearance: number; minimumUtilization: number; maximumLocalDensity: number; } export declare function collectSchematicLayoutGeometryIssues(input: LayoutQaInput, thresholds: LayoutQaGeometryThresholds): LayoutQaIssue[];