import { RatingProps } from "@mantine/core"; import { FormControlProps, InputRule } from "@mongez/react-form"; import { FC } from "react"; export type RatingInputProps = RatingProps & { label?: string; readOnly?: boolean; rules?: InputRule[]; } & FormControlProps; export declare const RatingInput: FC; //# sourceMappingURL=RatingInput.d.ts.map