import * as pulumi from "@pulumi/pulumi";
import * as enums from "../types/enums";
/**
 * Definition of AWS::Omics::WorkflowVersion Resource Type.
 */
export declare function getWorkflowVersion(args: GetWorkflowVersionArgs, opts?: pulumi.InvokeOptions): Promise<GetWorkflowVersionResult>;
export interface GetWorkflowVersionArgs {
    /**
     * ARN of the workflow version.
     */
    arn: string;
}
export interface GetWorkflowVersionResult {
    /**
     * ARN of the workflow version.
     */
    readonly arn?: string;
    /**
     * The creation time of the workflow version.
     */
    readonly creationTime?: string;
    /**
     * The description of the workflow version.
     */
    readonly description?: string;
    /**
     * The status of the workflow version.
     */
    readonly status?: enums.omics.WorkflowVersionWorkflowStatus;
    readonly storageCapacity?: number;
    readonly storageType?: enums.omics.WorkflowVersionStorageType;
    readonly tags?: {
        [key: string]: string;
    };
    /**
     * The type of the workflow version.
     */
    readonly type?: enums.omics.WorkflowVersionWorkflowType;
    readonly uuid?: string;
}
/**
 * Definition of AWS::Omics::WorkflowVersion Resource Type.
 */
export declare function getWorkflowVersionOutput(args: GetWorkflowVersionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetWorkflowVersionResult>;
export interface GetWorkflowVersionOutputArgs {
    /**
     * ARN of the workflow version.
     */
    arn: pulumi.Input<string>;
}
