/** * Rich LLM-facing tool prompts. * Returns detailed instructions for each tool, covering usage, parameters, and best practices. */ /** * Get rich LLM-facing prompt instructions for a specific tool. * * @param toolName - Name of the tool (read, bash, edit, write, grep, find, ls, todo_write, memory_write) * @returns Rich prompt instructions for the tool, or undefined if no rich prompt exists */ export declare function getToolPrompt(toolName: string): string | undefined; /** * Get tool description - rich prompt if available, otherwise fallback. * * @param toolName - Name of the tool * @returns Rich prompt or one-line fallback description */ export declare function getToolDescription(toolName: string): string; //# sourceMappingURL=tools-prompt-data.d.ts.map