export type OxlintProcessOptions = { signal?: AbortSignal; timeoutMs?: number; outputLimitBytes?: number; terminationGraceMs?: number; }; export type OxlintProcessResult = { status: number | null; signal: NodeJS.Signals | null; stdout: string; stderr: string; }; /** * Run Oxlint under the runtime it declares, independent of the SDK CLI's * parent runtime. The published CLI intentionally runs under Bun, while * Oxlint's executable is a Node program. */ export declare function runOxlintProcess(bin: string, args: readonly string[], cwd: string, options?: OxlintProcessOptions): Promise; //# sourceMappingURL=process.d.ts.map