import { ICustomMcpServerResponse } from '../../Interface'; declare const _default: { createCustomMcpServer: (requestBody: any, orgId: string) => Promise; getAllCustomMcpServers: (workspaceId: string, page?: number, limit?: number) => Promise<{ serverUrl: string; id: string; name: string; iconSrc?: string; color?: string; authType: string; tools?: string; toolCount: number; status: string; createdDate: Date; updatedDate: Date; workspaceId: string; }[] | { data: { serverUrl: string; id: string; name: string; iconSrc?: string; color?: string; authType: string; tools?: string; toolCount: number; status: string; createdDate: Date; updatedDate: Date; workspaceId: string; }[]; total: number; }>; getCustomMcpServerById: (id: string, workspaceId: string) => Promise; updateCustomMcpServer: (id: string, requestBody: any, workspaceId: string) => Promise; deleteCustomMcpServer: (id: string, workspaceId: string) => Promise; authorizeCustomMcpServer: (id: string, workspaceId: string) => Promise; getDiscoveredTools: (id: string, workspaceId: string) => Promise[]>; }; export default _default;