import type * as transcribe from "@distilled.cloud/aws/transcribe"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; /** * Runtime binding for `transcribe:ListLanguageModels` — list the custom language models in the account. * * Amazon Transcribe batch actions have no resource-level IAM; the host is * granted `transcribe:ListLanguageModels` on `*`. * * ### Custom Language Models * **Example:** List Custom Language Models * ```typescript * // init * const listLanguageModels = yield* AWS.Transcribe.ListLanguageModels(); * * // runtime * const { Models } = yield* listLanguageModels({ MaxResults: 10 }); * ``` * * @binding */ export interface ListLanguageModels extends Binding.Service Effect.Effect<(request?: transcribe.ListLanguageModelsRequest) => Effect.Effect>> { } export declare const ListLanguageModels: ListLanguageModels; //# sourceMappingURL=ListLanguageModels.d.ts.map