import type { SGNode } from './node.js'; /** * Records are deduped by reference identity (Set): the same logical * record loaded as two distinct objects counts twice. Keep one object per * record if you rely on union semantics. */ export declare function recordsFor(nodes: SGNode[]): R[]; export declare function recordsUnder(nodes: SGNode[]): R[];