import React from "react";
type RatingSize = "sm" | "md" | "lg";
type RatingAlignment = "left" | "center" | "right";
type RatingValue = number | null | undefined;
export interface RatingProps extends React.HTMLAttributes<HTMLDivElement> {
    value?: RatingValue;
    max?: number;
    size?: RatingSize;
    alignment?: RatingAlignment;
    activeClassName?: string;
    inactiveClassName?: string;
    showValue?: boolean;
}
declare const Rating: {
    ({ value, max, size, alignment, activeClassName, inactiveClassName, showValue, className, ...props }: RatingProps): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
export { Rating };
