import type { ValuesOf } from "../../util/typings.js"; /** Color values for {@link RatingDisplay}. */ export declare const RatingDisplayColors: { readonly neutral: "neutral"; readonly brand: "brand"; readonly marigold: "marigold"; }; /** Type describing color options for {@link RatingDisplay}. */ export type RatingDisplayColor = ValuesOf; /** Size values for {@link RatingDisplay}. */ export declare const RatingDisplaySizes: { readonly small: "small"; readonly medium: "medium"; readonly large: "large"; }; /** Type describing size options for {@link RatingDisplay}. */ export type RatingDisplaySize = ValuesOf; //# sourceMappingURL=rating-display.options.d.ts.map