import { GuideComponentComponent as GCC } from '../runtime';
export type ScrollbarOptions = {
    orientation?: 'horizontal' | 'vertical';
    ratio?: number;
    [key: string]: any;
};
/**
 * Scrollbar component.
 */
export declare const Scrollbar: GCC<ScrollbarOptions>;
