import { ReactElement } from 'react';
import { RatingProps } from '@mui/material/Rating';
interface Props {
    label: string;
}
export declare function RatingCustom({ label, ...props }: Props & RatingProps): ReactElement;
export {};
