import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
 * Resource Type definition for AWS::CustomerProfiles::Recommender
 */
export declare function getRecommender(args: GetRecommenderArgs, opts?: pulumi.InvokeOptions): Promise<GetRecommenderResult>;
export interface GetRecommenderArgs {
    domainName: string;
    recommenderName: string;
}
export interface GetRecommenderResult {
    /**
     * The timestamp of when the recommender was created.
     */
    readonly createdAt?: string;
    readonly description?: string;
    /**
     * The reason for recommender failure.
     */
    readonly failureReason?: string;
    /**
     * The timestamp of when the recommender was last updated.
     */
    readonly lastUpdatedAt?: string;
    readonly latestRecommenderUpdate?: outputs.customerprofiles.RecommenderUpdate;
    /**
     * The Amazon Resource Name (ARN) of the recommender.
     */
    readonly recommenderArn?: string;
    readonly recommenderConfig?: outputs.customerprofiles.RecommenderConfig;
    readonly status?: enums.customerprofiles.RecommenderStatus;
    /**
     * The tags used to organize, track, or control access for this resource.
     */
    readonly tags?: outputs.Tag[];
    readonly trainingMetrics?: outputs.customerprofiles.RecommenderTrainingMetrics[];
}
/**
 * Resource Type definition for AWS::CustomerProfiles::Recommender
 */
export declare function getRecommenderOutput(args: GetRecommenderOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetRecommenderResult>;
export interface GetRecommenderOutputArgs {
    domainName: pulumi.Input<string>;
    recommenderName: pulumi.Input<string>;
}
