@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
9 lines (8 loc) • 461 B
TypeScript
import { HTMLProps, PolymorphicProps } from '../factory';
import { UseCarouselProps } from './use-carousel';
import { ForwardRefExoticComponent, RefAttributes } from 'react';
export interface CarouselRootBaseProps extends UseCarouselProps, PolymorphicProps {
}
export interface CarouselRootProps extends HTMLProps<'div'>, CarouselRootBaseProps {
}
export declare const CarouselRoot: ForwardRefExoticComponent<CarouselRootProps & RefAttributes<HTMLDivElement>>;