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