export declare const RATINGITEM_CLASSNAME = "k-rating-item";
declare const states: ("focus" | "disabled" | "selected" | "hover")[];
export type RatingItemState = {
    [K in (typeof states)[number]]?: boolean;
};
export type RatingItemProps = {
    iconType?: "solid" | "outline" | "split";
    dir?: "rtl" | "ltr";
};
export declare const RatingItem: {
    (props: RatingItemState & RatingItemProps & React.HTMLAttributes<HTMLSpanElement>): import("react/jsx-runtime").JSX.Element | undefined;
    states: ("focus" | "disabled" | "selected" | "hover")[];
    options: {};
    className: string;
    defaultOptions: {
        iconType: string;
    };
};
export default RatingItem;
