import type { WithNormalizedProps } from "../../global";
static interface StarRatingInput extends Omit<Marko.HTML.Div, `on${string}`> {
    value?: `${0 | 1 | 2 | 3 | 4}${"-5" | ""}` | "5";
    "a11y-text"?: Marko.HTMLAttributes["aria-label"];
}
export interface Input extends WithNormalizedProps<StarRatingInput> {
}
