export type AgentInstructionResolution = { paths: string[]; content: string; }; export declare function candidateAgentInstructionPaths(cwd?: string): string[]; export declare function readAgentInstructions(cwd?: string): string; export declare function resolveAgentInstructionsForFile(filePath: string, options?: { cwd?: string; excludePaths?: readonly string[]; }): AgentInstructionResolution;