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"; /** * CreateEntry Catalog V2 * * @remarks * Create an entry within the catalog. We support a maximum of 50,000 entries per type. * * If you call this API with a payload where the external_id and catalog_type_id match an existing entry, the existing entry will be updated. */ export declare function catalogEntriesCreate(client$: IncidentioCore, request: components.CreateEntryRequestBody, options?: RequestOptions): Promise>; //# sourceMappingURL=catalogEntriesCreate.d.ts.map