import "../ApiClient-fBZ10h6n.mjs";
import "../StateType-CA4aMnXy.mjs";
import "../StateHistory-CKitluwW.mjs";
import { t as State_default } from "../State-DVXHVcVv.mjs";
//#region src/model/TaskRunAttempt.d.ts
type ITaskRunAttempt = {
state: State_default;
workerId: string;
logFile: string;
};
/**
* @typedef {Object} ITaskRunAttempt
* @property {State} state
* @property {String} workerId
* @property {String} logFile
*/
/**
* The TaskRunAttempt model module.
* @module model/TaskRunAttempt
* @type {ITaskRunAttempt}
*/
declare class TaskRunAttempt {
/**
* Initializes the fields of this object.
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
* Only for internal use.
*/
static initialize(obj: any, state: any): void;
/**
* Constructs a TaskRunAttempt from a plain JavaScript object, optionally creating a new instance.
* Copies all relevant properties from data to obj if supplied or a new instance if not.
* @param {Object} data The plain JavaScript object bearing properties of interest.
* @param {module:model/TaskRunAttempt} obj Optional instance to populate.
* @return {module:model/TaskRunAttempt} The populated TaskRunAttempt instance.
*/
static constructFromObject(data: any, obj: any): any;
/**
* Validates the JSON data with respect to TaskRunAttempt.
* @param {Object} data The plain JavaScript object bearing properties of interest.
* @return {boolean} to indicate whether the JSON data is valid with respect to TaskRunAttempt.
*/
static validateJSON(data: any): boolean;
/**
* Constructs a new TaskRunAttempt.
* @alias module:model/TaskRunAttempt
* @param {module:model/State} state -
*/
constructor(state: any);
state: State_default;
workerId: string;
logFile: string;
}
declare namespace TaskRunAttempt {
let RequiredProperties: string[];
}
//#endregion
export { ITaskRunAttempt, TaskRunAttempt as default };