import React from 'react'; import IReactComponentProps from '../../../common/structures/IReactComponentProps'; import { FunctionGeneric } from '../../../common/structures/Generics'; interface IProps extends IReactComponentProps { refCallback?: FunctionGeneric; shadowClassName?: string; /** When this switches from false to true, the scrollable content will be scrolled to the top */ scrollToTopTrigger?: boolean; /** Show a thin bottom border on the scroll container when not scrolling, useful for fixed buttons */ showBottomBorderWhenScrolled?: boolean; } export declare const ScrollShadow: (props: IProps) => React.JSX.Element; export {}; //# sourceMappingURL=ScrollShadow.d.ts.map