export type ExecutionLogLevel = "debug" | "info" | "warn" | "error"; export interface ExecutionLogEntry { id: string; timestamp: string; level: ExecutionLogLevel; message: string; nodeId?: string; metadata?: Record; } export declare function createExecutionLogEntry(level: ExecutionLogLevel, message: string, options?: { nodeId?: string; metadata?: Record; }): ExecutionLogEntry; //# sourceMappingURL=logs.d.ts.map