import * as React from "react"; import { ChangeHandler } from "../__utils/type"; interface IRateProps { /**optional name of the component */ name?: string; /**number of stars to display*/ count?: number; /**default selected rating */ defaultValue?: number; /**color of the selected star*/ color?: string; /**optional style for component */ style?: React.CSSProperties; /**optional callback when rating is selected*/ onChange?: ChangeHandler; } export declare const Rate: React.FC; declare const _default: React.NamedExoticComponent; export default _default;