import type { DevToolsSys } from "../../types";
/**
 * Helper to create a mock file system for testing discovery functions
 * @param files - Object mapping file paths to file contents
 * @returns Mock DevToolsSys instance
 */
export declare function createMockSys(files: Record<string, string>): DevToolsSys;
