import type * as qbusiness from "@distilled.cloud/aws/qbusiness"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { Application } from "./Application.ts"; /** * `DeleteConversation` request with `applicationId` injected from the bound application. */ export interface DeleteConversationRequest extends Omit { } /** * Runtime binding for the `DeleteConversation` operation (IAM action * `qbusiness:DeleteConversation`), scoped to one {@link Application}. * * Deletes a chat conversation and its messages. * Provide the implementation with * `Effect.provide(AWS.QBusiness.DeleteConversationHttp)`. * * ### Conversations * **Example:** Delete a Conversation * ```typescript * const deleteConversation = yield* AWS.QBusiness.DeleteConversation(app); * * yield* deleteConversation({ conversationId }); * ``` * * @binding */ export interface DeleteConversation extends Binding.Service Effect.Effect<(request: DeleteConversationRequest) => Effect.Effect>> { } export declare const DeleteConversation: DeleteConversation; //# sourceMappingURL=DeleteConversation.d.ts.map