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 ChannelEndpoints extends ClientSDK { /** * List all channel endpoints * * @remarks * List all channel endpoints for a resource based on query filters. */ list(request: operations.ChannelEndpointsControllerListChannelEndpointsRequest, options?: RequestOptions): Promise; /** * Create a channel endpoint * * @remarks * Create a new channel endpoint for a resource. */ create(requestBody: operations.ChannelEndpointsControllerCreateChannelEndpointRequestBody, idempotencyKey?: string | undefined, options?: RequestOptions): Promise; /** * Retrieve a channel endpoint * * @remarks * Retrieve a specific channel endpoint by its unique identifier. */ retrieve(identifier: string, idempotencyKey?: string | undefined, options?: RequestOptions): Promise; /** * Update a channel endpoint * * @remarks * Update an existing channel endpoint by its unique identifier. */ update(updateChannelEndpointRequestDto: components.UpdateChannelEndpointRequestDto, identifier: string, idempotencyKey?: string | undefined, options?: RequestOptions): Promise; /** * Delete a channel endpoint * * @remarks * Delete a specific channel endpoint by its unique identifier. */ delete(identifier: string, idempotencyKey?: string | undefined, options?: RequestOptions): Promise; } //# sourceMappingURL=channelendpoints.d.ts.map