export declare const logLevel: readonly [0, 10, 20, 30, 40, 50];
export type LogLevel = typeof logLevel[number];
export interface ILog {
    id: string;
    created: Date;
    updated: Date;
    name: string;
    level: LogLevel;
    message: string;
    timestamp: Date;
    flowRunId: string;
    taskRunId: string | null;
    workerId: string | null;
}
export declare class Log implements ILog {
    readonly id: string;
    readonly created: Date;
    readonly updated: Date;
    readonly kind = "log";
    name: string;
    level: LogLevel;
    message: string;
    timestamp: Date;
    flowRunId: string;
    taskRunId: string | null;
    workerId: string | null;
    constructor(log: ILog);
}
