import type { FlexboxProps } from 'react-layout-kit';
export interface ScrollShadowProps extends FlexboxProps {
    hideScrollBar?: boolean;
    isEnabled?: boolean;
    offset?: number;
    onVisibilityChange?: (visibility: {
        bottom?: boolean;
        left?: boolean;
        right?: boolean;
        top?: boolean;
    }) => void;
    orientation?: 'vertical' | 'horizontal';
    size?: number;
    visibility?: 'auto' | 'always' | 'never';
}
