import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire"; export interface SimulationStatus { $type: "keelson.SimulationStatus"; /** The source timestamp of the simulation state */ timestamp: Date | undefined; /** The current state of the simulation */ state: SimulationStatus_SimulationState; /** The name of the simulation */ name: string; /** The unique identifier of the simulation */ id: string; /** The simulation timestamp */ timestampSimulation: Date | undefined; } export declare enum SimulationStatus_SimulationState { UNKNOWN = 0, STOPPED = 1, ASSIGNED = 2, RUNNING = 3, PAUSED = 4, UNRECOGNIZED = -1 } export declare function simulationStatus_SimulationStateFromJSON(object: any): SimulationStatus_SimulationState; export declare function simulationStatus_SimulationStateToJSON(object: SimulationStatus_SimulationState): string; export declare const SimulationStatus: MessageFns; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; type DeepPartial = T extends Builtin ? T : T extends globalThis.Array ? globalThis.Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in Exclude]?: DeepPartial; } : Partial; type KeysOfUnion = T extends T ? keyof T : never; type Exact = P extends Builtin ? P : P & { [K in keyof P]: Exact; } & { [K in Exclude | "$type">]: never; }; interface MessageFns { readonly $type: V; encode(message: T, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): T; fromJSON(object: any): T; toJSON(message: T): unknown; create, I>>(base?: I): T; fromPartial, I>>(object: I): T; } export {};