/** * `log/` domain — capture and replay logs from local dev / CI processes. * * Three source types: `file` (read/follow a log file on disk), * `docker` (read/follow `docker logs `), and `kubernetes` * (read/follow `kubectl logs `). The user redirects their dev process * output to a destination we know how to read — we don't spawn the app * itself. * * Nine tools: registration (register/unregister/list/check-source), * point-in-time read (read, read-multi), and streaming follow * (follow/get-followed/stop-follow). */ import { Tool } from '../../../../tools'; import { BackendToolSessionContext } from '../context'; export declare const tools: Tool[];