import type { RemoteToolSource } from "./types.js"; /** Configuration used by context7 tool source. */ export interface Context7ToolSourceConfig { /** Context7 API key. Falls back to CONTEXT7_API_KEY env var. */ apiKey?: string; /** Override the default endpoint (useful for testing). */ endpoint?: string; } /** Create context7 tool source. */ export declare function createContext7ToolSource(config?: Context7ToolSourceConfig): RemoteToolSource; //# sourceMappingURL=context7.d.ts.map