import type { Baseline } from "./baseline.js"; import type { Finding } from "../types.js"; import type { DesignSystemGraph } from "../graph/types.js"; export interface DeltaResult { newFindings: Finding[]; staleGraph: boolean; } export declare function selectNew(findings: readonly Finding[], baseline: Baseline, graph: DesignSystemGraph): DeltaResult;