import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
 * Resource Type definition for AWS::SecurityAgent::TargetDomain
 */
export declare function getTargetDomain(args: GetTargetDomainArgs, opts?: pulumi.InvokeOptions): Promise<GetTargetDomainResult>;
export interface GetTargetDomainArgs {
    /**
     * Unique identifier of the target domain
     */
    targetDomainId: string;
}
export interface GetTargetDomainResult {
    /**
     * Timestamp when the target domain was registered
     */
    readonly createdAt?: string;
    /**
     * Tags for the target domain
     */
    readonly tags?: outputs.Tag[];
    /**
     * Unique identifier of the target domain
     */
    readonly targetDomainId?: string;
    readonly verificationDetails?: outputs.securityagent.TargetDomainVerificationDetails;
    /**
     * Verification method for the target domain
     */
    readonly verificationMethod?: enums.securityagent.TargetDomainVerificationMethod;
    /**
     * Current verification status of the registered target domain
     */
    readonly verificationStatus?: enums.securityagent.TargetDomainVerificationStatus;
    /**
     * Reason for the current target domain verification status
     */
    readonly verificationStatusReason?: string;
    /**
     * Timestamp when the target domain was last successfully verified
     */
    readonly verifiedAt?: string;
}
/**
 * Resource Type definition for AWS::SecurityAgent::TargetDomain
 */
export declare function getTargetDomainOutput(args: GetTargetDomainOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetTargetDomainResult>;
export interface GetTargetDomainOutputArgs {
    /**
     * Unique identifier of the target domain
     */
    targetDomainId: pulumi.Input<string>;
}
