import React from 'react';
import { ScrollbarShadowSide } from './types';
export interface ScrollbarShadowProps {
    side: ScrollbarShadowSide;
    size?: number;
    color?: string;
}
export declare const ScrollbarShadow: React.FC<ScrollbarShadowProps>;
export * from './types';
