import type { LeaksReport } from "../types.js"; /** * Resolve `path`, run `leaks` against it, and return the parsed report. * Handles the `leaks` exit-code-1-when-leaks-found convention. */ export declare function runLeaksAndParse(path: string): Promise<{ report: LeaksReport; resolvedPath: string; }>;