import type { PiiMatch } from './types.js'; /** * The largest-weight set of non-overlapping findings, in reading order. * * Touching spans do not overlap: `end <= start` is allowed, so two adjacent * numbers both survive. */ export declare function resolve(matches: readonly PiiMatch[]): PiiMatch[]; //# sourceMappingURL=resolve.d.ts.map