import { RecommendationAdvice } from './RecommendationAdvice';
/** Recommendation struct */
export interface Recommendation {
    /**  */
    advices: RecommendationAdvice[];
    /** Recommendation advices introduction and description sentences, indexed by supported locales */
    localizedDescription: {
        [key: string]: string;
    };
    /** Recommendation rank */
    rank: number;
}
//# sourceMappingURL=Recommendation.d.ts.map