import React from 'react';
export interface RateIconProps {
/**
* Fill state of the icon
*/
fillState?: 'full' | 'half' | 'empty';
/**
* Icon index (0-based)
*/
index: number;
}
/**
* RateIcon Component
*
* A composable component for star icons in a Rate component.
* Typically used within RateItem.
*
* @public
*
* @example
* ```tsx
*
*
*
* ```
*
* @remarks
* - Automatically styled based on fill state.
* - Uses Icon component with star icon by default.
* - Supports custom characters via Rate context.
*/
export declare const RateIcon: React.FC;
//# sourceMappingURL=RateIcon.d.ts.map