import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
 * Resource Type definition for AWS::BedrockAgentCore::PaymentManager
 */
export declare class PaymentManager extends pulumi.CustomResource {
    /**
     * Get an existing PaymentManager resource's state with the given name, ID, and optional extra
     * properties used to qualify the lookup.
     *
     * @param name The _unique_ name of the resulting resource.
     * @param id The _unique_ provider ID of the resource to lookup.
     * @param opts Optional settings to control the behavior of the CustomResource.
     */
    static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): PaymentManager;
    /**
     * Returns true if the given object is an instance of PaymentManager.  This is designed to work even
     * when multiple copies of the Pulumi SDK have been loaded into the same process.
     */
    static isInstance(obj: any): obj is PaymentManager;
    readonly authorizerConfiguration: pulumi.Output<outputs.bedrockagentcore.PaymentManagerAuthorizerConfiguration | undefined>;
    readonly authorizerType: pulumi.Output<enums.bedrockagentcore.PaymentManagerPaymentsAuthorizerType>;
    /**
     * The timestamp when the payment manager was created
     */
    readonly createdAt: pulumi.Output<string>;
    /**
     * A description of the payment manager
     */
    readonly description: pulumi.Output<string | undefined>;
    /**
     * The timestamp when the payment manager was last updated
     */
    readonly lastUpdatedAt: pulumi.Output<string>;
    /**
     * The name of the payment manager
     */
    readonly name: pulumi.Output<string>;
    /**
     * The Amazon Resource Name (ARN) of the payment manager
     */
    readonly paymentManagerArn: pulumi.Output<string>;
    /**
     * The unique identifier for the payment manager
     */
    readonly paymentManagerId: pulumi.Output<string>;
    /**
     * The ARN of the IAM role for the payment manager
     */
    readonly roleArn: pulumi.Output<string>;
    readonly status: pulumi.Output<enums.bedrockagentcore.PaymentManagerStatus>;
    /**
     * Tags to assign to the payment manager
     */
    readonly tags: pulumi.Output<outputs.Tag[] | undefined>;
    readonly workloadIdentityDetails: pulumi.Output<outputs.bedrockagentcore.PaymentManagerWorkloadIdentityDetails>;
    /**
     * Create a PaymentManager resource with the given unique name, arguments, and options.
     *
     * @param name The _unique_ name of the resource.
     * @param args The arguments to use to populate this resource's properties.
     * @param opts A bag of options that control this resource's behavior.
     */
    constructor(name: string, args: PaymentManagerArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * The set of arguments for constructing a PaymentManager resource.
 */
export interface PaymentManagerArgs {
    authorizerConfiguration?: pulumi.Input<inputs.bedrockagentcore.PaymentManagerAuthorizerConfigurationArgs>;
    authorizerType: pulumi.Input<enums.bedrockagentcore.PaymentManagerPaymentsAuthorizerType>;
    /**
     * A description of the payment manager
     */
    description?: pulumi.Input<string>;
    /**
     * The name of the payment manager
     */
    name?: pulumi.Input<string>;
    /**
     * The ARN of the IAM role for the payment manager
     */
    roleArn: pulumi.Input<string>;
    /**
     * Tags to assign to the payment manager
     */
    tags?: pulumi.Input<pulumi.Input<inputs.TagArgs>[]>;
}
