import { type NetKind } from './model.js'; export interface NetNameNormalization { rawNetName: string; canonicalNetName: string; kind: NetKind; changed: boolean; imported: boolean; rules: string[]; } export declare function classifyCanonicalNetName(name: string): NetKind; /** * Normalize only well-known imported/power aliases. Arbitrary user signal names * are preserved byte-for-byte (apart from surrounding whitespace and the * explicit {SLASH} import token), so this function is safe for readback use. */ export declare function normalizeNetName(input: unknown): NetNameNormalization;