import { Color } from '../screen';
import React from 'react';
interface ScrollbarProps {
    type?: 'vertical' | 'horizontal';
    offset: number;
    limit: number;
    length: number;
    background?: Color;
    color?: Color;
}
export default function Scrollbar({ type, offset, limit, length, background, color }: ScrollbarProps): React.JSX.Element;
export {};
