import type { FileSystem } from "./types.js"; export interface DiscoveredBase { content: string; filePath: string; } export declare function findBase(name: string, bases: string[], fs: FileSystem): Promise;