import type { TaskState, TaskType } from '../../common/enum/Task.ts';
import { Bone } from '../util/leoric.ts';
export declare class HistoryTask extends Bone {
    id: bigint;
    createdAt: Date;
    updatedAt: Date;
    taskId: string;
    type: TaskType;
    state: TaskState;
    targetName: string;
    authorId: string;
    authorIp: string;
    data: object;
    logPath: string;
    logStorePosition: string;
    attempts: number;
    error: string;
}
