import { FlexboxProps } from "../Flex/type.mjs";
import { Ref } from "react";

//#region src/ScrollShadow/type.d.ts
interface ScrollShadowProps extends FlexboxProps {
  hideScrollBar?: boolean;
  isEnabled?: boolean;
  offset?: number;
  onVisibilityChange?: (visibility: {
    bottom?: boolean;
    left?: boolean;
    right?: boolean;
    top?: boolean;
  }) => void;
  orientation?: 'vertical' | 'horizontal';
  ref?: Ref<HTMLDivElement>;
  size?: number;
  visibility?: 'auto' | 'always' | 'never';
}
//#endregion
export { ScrollShadowProps };
//# sourceMappingURL=type.d.mts.map