import type { RatingIconProps } from "../types";
/**
 * [Go to docs](https://flowbite-svelte.com/)
 * ## Type
 * [RatingIconProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1327)
 * ## Props
 * @prop fillPercent = 100
 * @prop fillColor = "#F5CA14"
 * @prop strokeColor = "#F5CA14"
 * @prop size = 24
 * @prop ariaLabel = "star"
 * @prop iconIndex = 0
 * @prop groupId = "star"
 * @prop role = "img"
 * @prop svgClass
 * @prop ...restProps
 */
declare const Star: import("svelte").Component<RatingIconProps, {}, "">;
type Star = ReturnType<typeof Star>;
export default Star;
