import React from "react"; export declare const ScrollThumb: import("styled-components").StyledComponent, any, { mode?: "DARK" | "LIGHT" | undefined; }, never>; interface Props { containerRef: React.RefObject; top?: string; bottom?: string; right?: string; alwaysShowScrollbar?: boolean; showScrollbarOnlyOnHover?: boolean; mode?: "DARK" | "LIGHT"; } declare function ScrollIndicator({ alwaysShowScrollbar, bottom, containerRef, right, showScrollbarOnlyOnHover, top, }: Props): JSX.Element; export default ScrollIndicator;