import "../ApiClient-fBZ10h6n.mjs";
import { n as StateTypeStatic } from "../StateType-CA4aMnXy.mjs";
//#region src/model/StateHistory.d.ts
type IStateHistory = {
state: keyof typeof StateTypeStatic;
date: Date;
};
/**
* @typedef {Object} IStateHistory
* @property {keyof typeof import('./StateType').StateTypeStatic} state
* @property {Date} date
*/
/**
* The StateHistory model module.
* @module model/StateHistory
* @type {IStateHistory}
*/
declare class StateHistory {
/**
* 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, date: any): void;
/**
* Constructs a StateHistory 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/StateHistory} obj Optional instance to populate.
* @return {module:model/StateHistory} The populated StateHistory instance.
*/
static constructFromObject(data: any, obj: any): any;
/**
* Validates the JSON data with respect to StateHistory.
* @param {Object} data The plain JavaScript object bearing properties of interest.
* @return {boolean} to indicate whether the JSON data is valid with respect to StateHistory.
*/
static validateJSON(data: any): boolean;
/**
* Constructs a new StateHistory.
* @alias module:model/StateHistory
* @param {module:model/StateType} state -
* @param {Date} date -
*/
constructor(state: any, date: Date);
state: "SUCCESS" | "WARNING" | "CREATED" | "SUBMITTED" | "RUNNING" | "PAUSED" | "RESTARTED" | "KILLING" | "FAILED" | "KILLED" | "CANCELLED" | "QUEUED" | "RETRYING" | "RETRIED" | "SKIPPED" | "BREAKPOINT" | "RESUBMITTED";
date: Date;
}
declare namespace StateHistory {
let RequiredProperties: string[];
}
//#endregion
export { IStateHistory, StateHistory as default };