import { ComponentPropsWithoutRef, ElementType, PropsWithChildren } from 'react'; type Props = PropsWithChildren & ComponentPropsWithoutRef & { as?: T; className?: string; }; declare function ScrollArea({ as, children, className, ...attrs }: Props): import("react/jsx-runtime").JSX.Element; export { ScrollArea }; export type { Props as ScrollAreaProps };