export function listMcpServerIntegrations(client: ChatBotKitClient, request?: McpServerIntegrationListRequest): ResponsePromise; export function fetchMcpServerIntegration(client: ChatBotKitClient, mcpserverId: string): ResponsePromise; export function createMcpServerIntegration(client: ChatBotKitClient, request: McpServerIntegrationCreateRequest): Promise; export function updateMcpServerIntegration(client: ChatBotKitClient, mcpserverId: string, request: McpServerIntegrationUpdateRequest): Promise; export function deleteMcpServerIntegration(client: ChatBotKitClient, mcpserverId: string, request?: McpServerIntegrationDeleteRequest): Promise; export type ChatBotKitClient = import("../../client.js").ChatBotKitClient; export type ResponsePromise = import("../../client.js").ResponsePromise; export type McpServerIntegrationListRequest = { cursor?: string; order?: "desc" | "asc"; take?: number; meta?: Record; }; export type McpServerIntegrationListResponse = import("../../types/api/v1.js").operations["listMcpServerIntegrations"]["responses"]["200"]["content"]["application/json"]; export type McpServerIntegrationListStreamType = import("../../types/api/v1.js").operations["listMcpServerIntegrations"]["responses"]["200"]["content"]["application/jsonl"]; export type McpServerIntegrationFetchResponse = import("../../types/api/v1.js").operations["fetchMcpServerIntegration"]["responses"]["200"]["content"]["application/json"]; export type McpServerIntegrationCreateRequestBody = import("../../types/api/v1.js").operations["createMcpServerIntegration"]["requestBody"]["content"]["application/json"]; export type McpServerIntegrationCreateRequest = McpServerIntegrationCreateRequestBody; export type McpServerIntegrationCreateResponseBody = import("../../types/api/v1.js").operations["createMcpServerIntegration"]["responses"]["200"]["content"]["application/json"]; export type McpServerIntegrationCreateResponse = McpServerIntegrationCreateResponseBody; export type McpServerIntegrationUpdateRequestBody = import("../../types/api/v1.js").operations["updateMcpServerIntegration"]["requestBody"]["content"]["application/json"]; export type McpServerIntegrationUpdateRequest = McpServerIntegrationUpdateRequestBody; export type McpServerIntegrationUpdateResponseBody = import("../../types/api/v1.js").operations["updateMcpServerIntegration"]["responses"]["200"]["content"]["application/json"]; export type McpServerIntegrationUpdateResponse = McpServerIntegrationUpdateResponseBody; export type McpServerIntegrationDeleteRequestBody = import("../../types/api/v1.js").operations["deleteMcpServerIntegration"]["requestBody"]["content"]["application/json"]; export type McpServerIntegrationDeleteRequest = McpServerIntegrationDeleteRequestBody; export type McpServerIntegrationDeleteResponseBody = import("../../types/api/v1.js").operations["deleteMcpServerIntegration"]["responses"]["200"]["content"]["application/json"]; export type McpServerIntegrationDeleteResponse = McpServerIntegrationDeleteResponseBody;