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 * as operations from "../models/operations/index.js"; import { Result } from "../types/fp.js"; /** * Edit Incidents V2 * * @remarks * Edit an existing incident. * * This endpoint allows you to edit the properties of an existing incident: e.g. set the severity or update custom fields. * * When using this endpoint, only fields that are provided will be edited (omitted fields * will be ignored). */ export declare function incidentsUpdate(client$: IncidentioCore, request: operations.IncidentsV2NumberEditRequest, options?: RequestOptions): Promise>; //# sourceMappingURL=incidentsUpdate.d.ts.map