import * as pulumi from "@pulumi/pulumi"; /** * Resource Type definition for ContactFlowModuleVersion */ export declare function getContactFlowModuleVersion(args: GetContactFlowModuleVersionArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetContactFlowModuleVersionArgs { /** * The identifier of the contact flow module version (ARN). */ contactFlowModuleVersionArn: string; } export interface GetContactFlowModuleVersionResult { /** * The identifier of the contact flow module version (ARN). */ readonly contactFlowModuleVersionArn?: string; /** * Indicates the checksum value of the latest published flow module content */ readonly flowModuleContentSha256?: string; /** * The version number of this revision */ readonly version?: number; } /** * Resource Type definition for ContactFlowModuleVersion */ export declare function getContactFlowModuleVersionOutput(args: GetContactFlowModuleVersionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetContactFlowModuleVersionOutputArgs { /** * The identifier of the contact flow module version (ARN). */ contactFlowModuleVersionArn: pulumi.Input; }