import type { StoredOAuthToken } from '@jterrats/oauth-pkce'; export type ProxyMcpEntry = { command: string; args: string[]; }; export declare function tokenPath(id: string): string; /** * Installs the proxy script, saves the token, and returns the mcp.json stdio * entry for the integration. */ export declare function installProxyServer(id: string, serverUrl: string, token: StoredOAuthToken): ProxyMcpEntry;