@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
10 lines (9 loc) • 532 B
TypeScript
import { Assign } from '../../types';
import { HTMLProps, PolymorphicProps } from '../factory';
import { UseToggleGroupProps } from './use-toggle-group';
import { ForwardRefExoticComponent, RefAttributes } from 'react';
export interface ToggleGroupRootBaseProps extends UseToggleGroupProps, PolymorphicProps {
}
export interface ToggleGroupRootProps extends Assign<HTMLProps<'div'>, ToggleGroupRootBaseProps> {
}
export declare const ToggleGroupRoot: ForwardRefExoticComponent<ToggleGroupRootProps & RefAttributes<HTMLDivElement>>;