import { Definer } from '@react-form-builder/core'; import { InputWrapperProps } from '@mantine/core'; import { JSX } from 'react/jsx-runtime'; import { RatingProps } from '@mantine/core'; /** * Mantine rating component for React Form Builder. * @param props component properties. * @returns rating component. */ export declare function MtRating(props: MtRatingProps): JSX.Element; export declare const mtRating: Definer; /** * Props for the MtRating component. */ export declare interface MtRatingProps extends Omit, Omit> { } export { }