import React from 'react'; export type StarIconProps = { index: number; size: number; color: string; type: 'full' | 'half' | 'quarter' | 'three-quarter' | 'empty'; }; declare const StarIcon: ({ index, type, size, color }: StarIconProps) => React.JSX.Element; export default StarIcon; //# sourceMappingURL=StarIcon.d.ts.map