/** * Tool Data Service * SOLID Principles: Single Responsibility - Handle generic tool data operations only */ import { IToolDataService, IDatabaseConnection } from '../interfaces'; export declare class ToolDataService implements IToolDataService { private db; constructor(db: IDatabaseConnection); saveToolData(projectId: string, toolName: string, data: any): Promise; getToolData(projectId: string, toolName: string): Promise; deleteToolData(projectId: string, toolName: string): Promise; getAllToolData(projectId: string): Promise; } //# sourceMappingURL=tool-data-service.d.ts.map