import { type AiFilesState } from "./state.js"; import { type InjectResult, type StripResult } from "./utils.js"; export declare function injectAgentsMdSection({ section, projectDir, }: { section: string; projectDir?: string; }): Promise; export declare function attemptToStripAgentsMdSection(projectDir: string): Promise; export declare function attemptToRemoveAgentsMdSection(projectDir: string): Promise; export declare function hasAgentsMdInstalled(projectDir: string): Promise; /** * Inject (or update) the Convex section in AGENTS.md and record the hash. * Returns true if the file was actually written. */ export declare function applyAgentsMdSection({ projectDir, state, convexDirName, }: { projectDir: string; state: AiFilesState; convexDirName: string; }): Promise; //# sourceMappingURL=agentsmd.d.ts.map