import { CloudinaryAssetMgmtCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { APIError } from "../models/errors/apierror.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import { RelateAssetsByAssetIdRequest } from "../models/relateassetsbyassetidrequest.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * Add related assets by asset ID * * @remarks * Relates an asset to other assets by their asset IDs, an immutable identifier, regardless of public ID, display name, asset folder, resource type or delivery type. This is a bidirectional process, meaning that the asset will also be added as a related_asset to all the other assets specified. The relation is also a one to many relationship, where the asset is related to all the assets specified, but those assets aren't also related to each other. */ export declare function assetRelationsCreateAssetRelationsByAssetId(client$: CloudinaryAssetMgmtCore, asset_id: string, relate_assets_by_asset_id_request: RelateAssetsByAssetIdRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=assetRelationsCreateAssetRelationsByAssetId.d.ts.map