import { type HTMLAttributes } from "react";
export interface StarIconContainerProps extends HTMLAttributes {
className?: string;
isFocusVisible?: boolean;
isFocused?: boolean;
isHighlighted?: boolean;
isSelected?: boolean;
}
export declare const StarIconContainer: import("react").ForwardRefExoticComponent>;