import { type ProcessLog } from './logs/processLogs.ts'; export interface ConsoleLogOptions { format: 'pretty' | 'json'; prefix?: string; enableAppNamePrefix?: boolean; } export declare function infoLog(...args: any[]): void; export declare function consoleLogSystemMessage(format: 'pretty' | 'json', msg: string, prefix?: string): void; export declare function consoleLogRow(row: ProcessLog, options: ConsoleLogOptions): void; //# sourceMappingURL=logs.d.ts.map