import React from 'react'; export declare type RateStateProp = { title: string; level: number; }; export declare type MakeRattingProps = { Rating: RateStateProp[]; onChange?: (state: RateStateProp[]) => void; isDraft?: boolean; allowExpand?: boolean; }; declare const MakeRating: React.FC; export default MakeRating;