import * as pulumi from "@pulumi/pulumi";
import * as enums from "../types/enums";
/**
 * Represents a custom dictionary for improving transcription accuracy
 */
export declare function getDictionary(args: GetDictionaryArgs, opts?: pulumi.InvokeOptions): Promise<GetDictionaryResult>;
export interface GetDictionaryArgs {
    id: string;
}
export interface GetDictionaryResult {
    readonly arn?: string;
    readonly id?: string;
    readonly language?: enums.elementalinference.DictionaryLanguage;
    readonly name?: string;
    readonly tags?: {
        [key: string]: string;
    };
}
/**
 * Represents a custom dictionary for improving transcription accuracy
 */
export declare function getDictionaryOutput(args: GetDictionaryOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDictionaryResult>;
export interface GetDictionaryOutputArgs {
    id: pulumi.Input<string>;
}
