scrollbar.d.ts 252 B

123456789
  1. import { GuideComponentComponent as GCC } from '../runtime';
  2. export type ScrollbarOptions = {
  3. orientation: 'horizontal' | 'vertical';
  4. [key: string]: any;
  5. };
  6. /**
  7. * Scrollbar component.
  8. */
  9. export declare const Scrollbar: GCC<ScrollbarOptions>;