import React from 'react'; import type { ScrollbarProps } from './types'; import './MacScrollbar.less'; export interface MacScrollbarProps extends ScrollbarProps, React.HtmlHTMLAttributes { /** * Custom element type. * @defaultValue 'div' */ as?: keyof JSX.IntrinsicElements | string; } export declare const MacScrollbar: React.ForwardRefExoticComponent>;