import { ScrollAreaRootProps, ScrollAreaScrollbarProps, ScrollAreaThumbProps, ScrollAreaViewportProps } from 'radix-vue'; import { HtmlAttributes } from '../../lib'; type WithHTMLAttrs = T & HtmlAttributes; export interface CdrSurfaceScroll { rootProps?: WithHTMLAttrs; scrollbarProps?: WithHTMLAttrs; thumbProps?: WithHTMLAttrs; viewportProps?: WithHTMLAttrs; } export {};