import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Resource Type definition for AWS::Route53Profiles::ProfileAssociation
 */
export declare function getProfileAssociation(args: GetProfileAssociationArgs, opts?: pulumi.InvokeOptions): Promise<GetProfileAssociationResult>;
export interface GetProfileAssociationArgs {
    /**
     * Primary Identifier for  Profile Association
     */
    id: string;
}
export interface GetProfileAssociationResult {
    /**
     * Primary Identifier for  Profile Association
     */
    readonly id?: string;
    /**
     * An array of key-value pairs to apply to this resource.
     */
    readonly tags?: outputs.Tag[];
}
/**
 * Resource Type definition for AWS::Route53Profiles::ProfileAssociation
 */
export declare function getProfileAssociationOutput(args: GetProfileAssociationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetProfileAssociationResult>;
export interface GetProfileAssociationOutputArgs {
    /**
     * Primary Identifier for  Profile Association
     */
    id: pulumi.Input<string>;
}
