import * as React from 'react'; export interface RateProps { count?: number; label?: React.ReactNode; value?: number; readOnly?: boolean; icon?: string; iconFill?: string; size?: string; color?: string; onChange?: (e: any) => void; } declare const Rate: (props: RateProps) => JSX.Element; export default Rate;