type ChorusRemoteMcpConfig = { type: "remote"; url: string; headers: Record; oauth: false; enabled: true; }; export declare function resolveChorusMcpUrl(chorusUrl: string): string; export type ChorusMcpScope = { projectUuid?: string; projectGroupUuid?: string; }; export declare function createChorusMcpHeaders(apiKey: string, scope?: ChorusMcpScope): Record; export declare function createChorusRemoteMcpConfig(chorusUrl: string, apiKey: string): ChorusRemoteMcpConfig; export {};