export interface FileLogEntry { level: "info" | "warn" | "error"; message: string; source: string; } export interface LogFileOptions { name: string; filePath: string; } export declare function readLogFile(options: LogFileOptions & { projectRoot?: string; level?: ("info" | "warn" | "error") | ("info" | "warn" | "error")[]; limit?: number; }): Promise; export declare function readLogFileTail(options: LogFileOptions & { projectRoot?: string; lines?: number; limit?: number; level?: ("info" | "warn" | "error") | ("info" | "warn" | "error")[]; }): Promise;