import { Algorithm } from "./Algorithm"; import { Order } from "./Order"; export declare type AlgorithmRunStatus = 'running' | 'stopped' | 'resumed' | 'finished' | 'error'; export declare class AlgorithmRun { id: number; algorithmName: string; inputs: InputType; status: AlgorithmRunStatus; state: StateType; updatedAt: Date; createdAt: Date; algorithm: Algorithm; orders: Order[]; }