import { Tool, ToolParameter, ToolExecutionContext } from '../tool-registry'; import { ToolResult } from '../types'; /** * Tool to refresh SoM markers when they appear outdated or misaligned */ export declare class RefreshSomMarkersTool implements Tool { name: string; description: string; parameters: ToolParameter[]; execute(params: Record, context: ToolExecutionContext): Promise; } //# sourceMappingURL=refresh-som-markers.d.ts.map