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#L1324)
 * ## Props
 * @prop fillPercent = 100
 * @prop fillColor = "#ff0000"
 * @prop strokeColor = "#ff0000"
 * @prop size = 24
 * @prop ariaLabel = "star"
 * @prop iconIndex = 0
 * @prop groupId = "star"
 * @prop role = "img"
 * @prop svgClass
 * @prop ...restProps
 */
declare const Heart: import("svelte").Component<RatingIconProps, {}, "">;
type Heart = ReturnType<typeof Heart>;
export default Heart;
