export interface InstructionBlock { sourcePath: string; scope: string; precedence: number; content: string; } export interface InstructionLoadOptions { workspaceRoot: string; focusPaths?: string[]; includeLocal?: boolean; } export declare const loadInstructionBlocks: (options: InstructionLoadOptions) => Promise; export declare const formatInstructionBlocks: (blocks: InstructionBlock[]) => string; //# sourceMappingURL=InstructionLoader.d.ts.map