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