import type { OhMyCCAgentConfig } from "../config/schema"; export type InstructionSource = { path: string; origin: "global" | "project"; content: string; }; export type InstructionBundle = { sources: InstructionSource[]; systemPromptSection: string | null; }; export declare function loadInstructionBundle(config: OhMyCCAgentConfig, directory: string): InstructionBundle;