@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
10 lines (9 loc) • 540 B
text/typescript
import { Assign } from '../../types';
import { HTMLProps, PolymorphicProps } from '../factory';
import { UseSegmentGroupProps } from './use-segment-group';
import { ForwardRefExoticComponent, RefAttributes } from 'react';
export interface SegmentGroupRootBaseProps extends UseSegmentGroupProps, PolymorphicProps {
}
export interface SegmentGroupRootProps extends Assign<HTMLProps<'div'>, SegmentGroupRootBaseProps> {
}
export declare const SegmentGroupRoot: ForwardRefExoticComponent<SegmentGroupRootProps & RefAttributes<HTMLDivElement>>;