import { IncidentioCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import { SDKError } from "../models/errors/sdkerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import { Result } from "../types/fp.js"; /** * 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. */ export declare function escalationPathsCreate(client$: IncidentioCore, request: components.CreatePathRequestBody, options?: RequestOptions): Promise>; //# sourceMappingURL=escalationPathsCreate.d.ts.map