import React from "react"; declare type RankProps = { defalutScore?: number; onChange: (rank: number) => void; max?: number; size?: number; tip?: string; style?: React.CSSProperties & { "--color-primary": string; }; }; declare const Rank: React.FC; export default Rank;