import * as React from 'react'; import type { Property } from 'csstype'; import type { StyleToken } from '../types/style'; interface RatingMixedIconProps { emptyColor?: StyleToken; emptyIcon: React.ReactNode; fillColor?: StyleToken; fillIcon: React.ReactNode; value: number; } export declare const RatingMixedIcon: React.FC; export {};