import React from 'react'; export interface NitrogenAgentCredentialRuntimeProps { /** Base URL of the hosted Nitrogen app; the MCP endpoint is `${instanceUrl}/mcp`. */ instanceUrl?: string; /** Connector API base advertised via the `x-nitrogen-api-url` header. */ apiUrl?: string; /** Payload forwards arbitrary field props; tolerate them. */ [key: string]: unknown; } export declare const NitrogenAgentCredentialRuntime: React.FC;