import { type McpIntegration } from './mcp-registry.js'; export declare const LOCAL_INTEGRATIONS_FILENAME = "mcp-integrations.json"; type WarnFn = (message: string) => void; /** * Load local integrations from the user- and project-level files, later sources * overriding earlier ones by `id`. Never throws. */ export declare function loadLocalIntegrations(cwd: string, warn?: WarnFn): McpIntegration[]; /** * The effective integration catalog: the built-in registry plus any local * integrations, with local entries overriding a built-in of the same `id`. */ export declare function getAllIntegrations(cwd: string, warn?: WarnFn): McpIntegration[]; export {};