import { ItemsService } from "../../devtracker/services/items.service";
import type { AgentTool, ToolDescriptor, ToolInvocation, ToolResult } from './tool.types';
export declare class ProjectQueryTool implements AgentTool {
    private readonly itemsService;
    constructor(itemsService: ItemsService);
    readonly descriptor: ToolDescriptor;
    invoke(inv: ToolInvocation): Promise<ToolResult>;
}
