import * as pulumi from "@pulumi/pulumi";
/**
 * Definition of AWS::Bedrock::AutomatedReasoningPolicyVersion Resource Type
 */
export declare function getAutomatedReasoningPolicyVersion(args: GetAutomatedReasoningPolicyVersionArgs, opts?: pulumi.InvokeOptions): Promise<GetAutomatedReasoningPolicyVersionResult>;
export interface GetAutomatedReasoningPolicyVersionArgs {
    /**
     * The Amazon Resource Name (ARN) of the policy.
     */
    policyArn: string;
    /**
     * The version number of the policy version.
     */
    version: string;
}
export interface GetAutomatedReasoningPolicyVersionResult {
    /**
     * The timestamp when the policy version was created.
     */
    readonly createdAt?: string;
    /**
     * A hash of the policy definition used to identify the version.
     */
    readonly definitionHash?: string;
    /**
     * The description of the policy version.
     */
    readonly description?: string;
    /**
     * The name of the policy version.
     */
    readonly name?: string;
    /**
     * The unique identifier of the policy.
     */
    readonly policyId?: string;
    /**
     * The timestamp when the policy version was last updated.
     */
    readonly updatedAt?: string;
    /**
     * The version number of the policy version.
     */
    readonly version?: string;
}
/**
 * Definition of AWS::Bedrock::AutomatedReasoningPolicyVersion Resource Type
 */
export declare function getAutomatedReasoningPolicyVersionOutput(args: GetAutomatedReasoningPolicyVersionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAutomatedReasoningPolicyVersionResult>;
export interface GetAutomatedReasoningPolicyVersionOutputArgs {
    /**
     * The Amazon Resource Name (ARN) of the policy.
     */
    policyArn: pulumi.Input<string>;
    /**
     * The version number of the policy version.
     */
    version: pulumi.Input<string>;
}
