UNPKG

@ark-ui/react

Version:

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

13 lines (12 loc) 593 B
import { HTMLProps, PolymorphicProps } from '../factory'; import { UseRadioGroupReturn } from './use-radio-group'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; interface RootProviderProps { value: UseRadioGroupReturn; } export interface RadioGroupRootProviderBaseProps extends RootProviderProps, PolymorphicProps { } export interface RadioGroupRootProviderProps extends HTMLProps<'div'>, RadioGroupRootProviderBaseProps { } export declare const RadioGroupRootProvider: ForwardRefExoticComponent<RadioGroupRootProviderProps & RefAttributes<HTMLDivElement>>; export {};