import { FunctionComponent, h } from "preact"; import { FeedbackTranslations } from "./types"; export type StarRatingProps = { name: string; selectedValue?: number; onChange?: h.JSX.GenericEventHandler; t: FeedbackTranslations; }; export declare const StarRating: FunctionComponent;