import type { RatingProps } from "../types";
/**
 * [Go to docs](https://flowbite-svelte.com/)
 * ## Type
 * [RatingProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1253)
 * ## Props
 * @prop children
 * @prop text
 * @prop class: className
 * @prop size = 24
 * @prop total = 5
 * @prop rating = 4
 * @prop icon: Icon = Star
 * @prop count = false
 * @prop pClass
 * @prop ...restProps
 */
declare const Rating: import("svelte").Component<RatingProps, {}, "">;
type Rating = ReturnType<typeof Rating>;
export default Rating;
