import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import * as operations from "../models/operations/index.js"; export declare class EscalationPaths extends ClientSDK { /** * CreatePath Escalations V2 * * @remarks * Create an escalation path. * * An escalation path is a series of steps that describe how a page should be escalated, * represented as graph, supporting conditional branches based on alert priority and working * intervals. * * We recommend you create escalation paths in the incident.io dashboard where our path * builder makes it easy to use conditions and visualise the path. */ create(request: components.CreatePathRequestBody, options?: RequestOptions): Promise; /** * DestroyPath Escalations V2 * * @remarks * Archives an escalation path. * * We recommend you create escalation paths in the incident.io dashboard where our path * builder makes it easy to use conditions and visualise the path. */ delete(request: operations.EscalationsV2NumberDestroyPathRequest, options?: RequestOptions): Promise; /** * ShowPath Escalations V2 * * @remarks * Show an escalation path. * * We recommend you create escalation paths in the incident.io dashboard where our path * builder makes it easy to use conditions and visualise the path. */ get(request: operations.EscalationsV2NumberShowPathRequest, options?: RequestOptions): Promise; /** * UpdatePath Escalations V2 * * @remarks * Updates an escalation path. * * We recommend you create escalation paths in the incident.io dashboard where our path * builder makes it easy to use conditions and visualise the path. */ update(request: operations.EscalationsV2NumberUpdatePathRequest, options?: RequestOptions): Promise; } //# sourceMappingURL=escalationpaths.d.ts.map