import React from 'react';
import type { IconItem } from './constants';
import type { Translations } from './FeedbackForm';
interface RatingStyle {
    backgroundColor: string;
    textColor: string;
    primaryFont: string;
    secondaryFont: string;
    iconTextColor: string;
}
interface Props {
    projectName: string;
    selectedIconIndex: number | null;
    setSelectedIconIndex: (_index: number | null) => void;
    isCustomTranslation: boolean;
    translations: Translations;
    style: RatingStyle;
    customIcons?: IconItem[];
}
export declare const Rating: React.FC<Props>;
export {};
//# sourceMappingURL=Rating.d.ts.map