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