import type { Tool } from '@wrongstack/core/types'; export interface LogsInput { service?: string | undefined; path?: string | undefined; lines?: number | undefined; filter?: string | undefined; since?: '1h' | '6h' | '24h' | 'all' | undefined; cwd?: string | undefined; } export interface LogEntry { timestamp: string; level: string; message: string; source?: string | undefined; } export interface LogsOutput { source: string; entries: LogEntry[]; total: number; truncated: boolean; stream_mode: boolean; } export declare const logsTool: Tool; //# sourceMappingURL=logs.d.ts.map