import React from 'react';
import type { StarProps } from './types/types';
/**
 * Star component for displaying a single star.
 * @param props - The StarProps object containing the props for the Star component.
 * @returns JSX.Element representing the Star component.
 */
declare const Star: ({ currentStar, isActive, iconColor, iconWidth, iconHeight, fillPercentage, animationClassName, onClick, }: StarProps) => React.JSX.Element;
export default Star;
