UNPKG

@ark-ui/react

Version:

A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.

9 lines (8 loc) 402 B
import { PropTypes } from '@zag-js/react'; import { Optional } from '../../types'; import * as rating from '@zag-js/rating-group'; export interface UseRatingGroupProps extends Optional<Omit<rating.Props, 'dir' | 'getRootNode'>, 'id'> { } export interface UseRatingGroupReturn extends rating.Api<PropTypes> { } export declare const useRatingGroup: (props?: UseRatingGroupProps) => UseRatingGroupReturn;