import { type Confidence } from "./instructions-model.js"; type InstructionAdoptResult = { readonly adoptedPath: string; readonly rulesAdopted: number; readonly schemaVersion: "instructions-adopt-result.1"; readonly skippedRules: readonly string[]; }; export declare function runInstructionAdopt(projectDir: string, minConfidence: Confidence): InstructionAdoptResult; export declare function formatInstructionAdoptResult(result: InstructionAdoptResult): string; export declare function parseMinConfidence(args: readonly string[]): Confidence; export declare function stripAdoptArgs(args: readonly string[]): readonly string[]; export {};