import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface RateItemProps extends ComposableProps<'div'> { /** * Star index (0-based) */ index: number; /** * Custom content (optional) */ children?: React.ReactNode; } /** * RateItem Component * * A composable component for individual star items in a Rate component. * Typically wraps RateIcon. * * @public * * @example * ```tsx * * {Array.from({ length: 5 }, (_, i) => ( * * * * ))} * * ``` * * @remarks * - Wraps the HTML `
` element by default. * - Supports `asChild` prop to merge props with a custom child element. * - Automatically handles click and hover events. */ export declare const RateItem: React.ForwardRefExoticComponent>; //# sourceMappingURL=RateItem.d.ts.map