import { QueryRunner } from 'typeorm'; import { Tool } from '../../database/entities/Tool'; declare const _default: { createTool: (requestBody: any, orgId: string) => Promise; deleteTool: (toolId: string, workspaceId: string) => Promise; getAllTools: (workspaceId?: string, page?: number, limit?: number) => Promise; getToolById: (toolId: string, workspaceId: string) => Promise; updateTool: (toolId: string, toolBody: any, workspaceId: string) => Promise; importTools: (newTools: Partial[], queryRunner?: QueryRunner) => Promise; }; export default _default;