import React from "react";
type RatingLabelPropsType = {
    children?: React.ReactNode;
};
declare function RatingLabel({ children }: RatingLabelPropsType): React.JSX.Element;
export default RatingLabel;
