export declare const PRIMARY_CONTEXT_FILE = "JENSEN.md"; export declare const LEGACY_CONTEXT_FILE = "AGENTS.md"; export declare const CLAUDE_CONTEXT_FILE = "CLAUDE.md"; export declare const CONTEXT_FILE_CANDIDATES: readonly ["JENSEN.md", "AGENTS.md", "CLAUDE.md"]; export type ContextFileName = (typeof CONTEXT_FILE_CANDIDATES)[number]; export interface LocatedContextFile { filename: ContextFileName; path: string; } export declare function findContextFileInDir(dir: string): LocatedContextFile | undefined; export declare function describeContextFiles(): string; export declare function isLegacyAgentsContextFile(filename: string): filename is typeof LEGACY_CONTEXT_FILE; export declare function getLegacyAgentsDeprecationWarning(filePath: string): string; //# sourceMappingURL=context-files.d.ts.map