import type * as textract from "@distilled.cloud/aws/textract"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { Adapter } from "./Adapter.ts"; /** * Runtime binding for `textract:DeleteAdapterVersion` — delete a version * of the bound adapter (e.g. retire superseded versions from a retraining * pipeline). * * ### Managing Adapters * **Example:** Delete an Adapter Version * ```typescript * // init * const deleteAdapterVersion = yield* AWS.Textract.DeleteAdapterVersion(adapter); * * // runtime * yield* deleteAdapterVersion({ AdapterVersion: "1" }); * ``` * * @binding */ export interface DeleteAdapterVersion extends Binding.Service(adapter: A) => Effect.Effect<(request: Omit) => Effect.Effect>> { } export declare const DeleteAdapterVersion: DeleteAdapterVersion; //# sourceMappingURL=DeleteAdapterVersion.d.ts.map