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::Evaluator - Creates a custom evaluator for agent quality assessment using LLM-as-a-Judge configurations.
 */
export declare class Evaluator extends pulumi.CustomResource {
    /**
     * Get an existing Evaluator 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): Evaluator;
    /**
     * Returns true if the given object is an instance of Evaluator.  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 Evaluator;
    /**
     * The timestamp when the evaluator was created.
     */
    readonly createdAt: pulumi.Output<string>;
    /**
     * The description of the evaluator.
     */
    readonly description: pulumi.Output<string | undefined>;
    /**
     * The Amazon Resource Name (ARN) of the evaluator.
     */
    readonly evaluatorArn: pulumi.Output<string>;
    /**
     * The configuration for the evaluator.
     */
    readonly evaluatorConfig: pulumi.Output<outputs.bedrockagentcore.EvaluatorConfig>;
    /**
     * The unique identifier of the evaluator.
     */
    readonly evaluatorId: pulumi.Output<string>;
    /**
     * The name of the evaluator. Must be unique within your account.
     */
    readonly evaluatorName: pulumi.Output<string>;
    /**
     * The ARN of the KMS key used to encrypt evaluator data.
     */
    readonly kmsKeyArn: pulumi.Output<string | undefined>;
    /**
     * The evaluation level that determines the scope of evaluation.
     */
    readonly level: pulumi.Output<enums.bedrockagentcore.EvaluatorLevel>;
    /**
     * The current status of the evaluator.
     */
    readonly status: pulumi.Output<enums.bedrockagentcore.EvaluatorStatus>;
    /**
     * A list of tags to assign to the evaluator.
     */
    readonly tags: pulumi.Output<outputs.Tag[] | undefined>;
    /**
     * The timestamp when the evaluator was last updated.
     */
    readonly updatedAt: pulumi.Output<string>;
    /**
     * Create a Evaluator 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: EvaluatorArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * The set of arguments for constructing a Evaluator resource.
 */
export interface EvaluatorArgs {
    /**
     * The description of the evaluator.
     */
    description?: pulumi.Input<string>;
    /**
     * The configuration for the evaluator.
     */
    evaluatorConfig: pulumi.Input<inputs.bedrockagentcore.EvaluatorConfigArgs>;
    /**
     * The name of the evaluator. Must be unique within your account.
     */
    evaluatorName?: pulumi.Input<string>;
    /**
     * The ARN of the KMS key used to encrypt evaluator data.
     */
    kmsKeyArn?: pulumi.Input<string>;
    /**
     * The evaluation level that determines the scope of evaluation.
     */
    level: pulumi.Input<enums.bedrockagentcore.EvaluatorLevel>;
    /**
     * A list of tags to assign to the evaluator.
     */
    tags?: pulumi.Input<pulumi.Input<inputs.TagArgs>[]>;
}
