/** * Fades the edges of a horizontally scrollable container to hint at hidden content. * Returns props to spread on the scroll container: a ref, an onScroll handler and a * dynamic `maskImage` that fades only the edges that still overflow (right when there * is more to reveal, left once scrolled). Pure CSS mask, so it is background-agnostic. */ declare const useScrollFadeMask: () => { maskImage: string; onScroll: () => void; ref: (node: T | null) => void; }; export default useScrollFadeMask;