import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Resource Type definition for AWS::CustomerProfiles::DomainObjectType
 */
export declare function getDomainObjectType(args: GetDomainObjectTypeArgs, opts?: pulumi.InvokeOptions): Promise<GetDomainObjectTypeResult>;
export interface GetDomainObjectTypeArgs {
    domainName: string;
    objectTypeName: string;
}
export interface GetDomainObjectTypeResult {
    /**
     * The timestamp of when the domain object type was created.
     */
    readonly createdAt?: string;
    readonly description?: string;
    readonly encryptionKey?: string;
    /**
     * The timestamp of when the domain object type was most recently edited.
     */
    readonly lastUpdatedAt?: string;
    readonly tags?: outputs.Tag[];
}
/**
 * Resource Type definition for AWS::CustomerProfiles::DomainObjectType
 */
export declare function getDomainObjectTypeOutput(args: GetDomainObjectTypeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDomainObjectTypeResult>;
export interface GetDomainObjectTypeOutputArgs {
    domainName: pulumi.Input<string>;
    objectTypeName: pulumi.Input<string>;
}
