import * as pulumi from "@pulumi/pulumi"; export declare function getVideoLanguage(args: GetVideoLanguageArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVideoLanguage. */ export interface GetVideoLanguageArgs { code: string; } /** * A collection of values returned by getVideoLanguage. */ export interface GetVideoLanguageResult { readonly code: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; readonly supportPlayerTranslation: boolean; readonly supportTranscribing: boolean; readonly transcribingAccuracy: number; } export declare function getVideoLanguageOutput(args: GetVideoLanguageOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVideoLanguage. */ export interface GetVideoLanguageOutputArgs { code: pulumi.Input; }