import "../ApiClient-fBZ10h6n.mjs";
import "../MapObjectObject-CiMbke6f.mjs";
import { t as SLABehavior } from "../SLABehavior-CoTQEZUy.mjs";
import { t as SLALabels_default } from "../SLALabels-KGnyzIXp.mjs";
import { t as SLAType } from "../SLAType-Uw2BNRmn.mjs";
//#region src/model/SLA.d.ts
type ISLA = {
id: string;
type: SLAType;
behavior: SLABehavior;
labels: SLALabels_default;
};
/**
* @typedef {Object} ISLA
* @property {String} id
* @property {SLAType} type
* @property {SLABehavior} behavior
* @property {SLALabels} labels
*/
/**
* The SLA model module.
* @module model/SLA
* @type {ISLA}
*/
declare class SLA {
/**
* 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, id: any, type: any, behavior: any): void;
/**
* Constructs a SLA 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/SLA} obj Optional instance to populate.
* @return {module:model/SLA} The populated SLA instance.
*/
static constructFromObject(data: any, obj: any): any;
/**
* Validates the JSON data with respect to SLA.
* @param {Object} data The plain JavaScript object bearing properties of interest.
* @return {boolean} to indicate whether the JSON data is valid with respect to SLA.
*/
static validateJSON(data: any): boolean;
/**
* Constructs a new SLA.
* @alias module:model/SLA
* @param {String} id -
* @param {module:model/SLAType} type -
* @param {module:model/SLABehavior} behavior -
*/
constructor(id: string, type: any, behavior: any);
id: string;
type: SLAType;
behavior: SLABehavior;
labels: SLALabels_default;
}
declare namespace SLA {
let RequiredProperties: string[];
}
//#endregion
export { ISLA, SLA as default };