/** * Cache source handlers for different source types */ /** * File source handler */ export declare class FileSourceHandler { static load(filePath: string): Promise; } /** * Glob source handler */ export declare class GlobSourceHandler { static load(pattern: string): Promise; } /** * Codex source handler (optional integration) */ export declare class CodexSourceHandler { static load(uri: string): Promise; } //# sourceMappingURL=source-handlers.d.ts.map