/// import { Theme } from 'styled-components'; import { BaseCSSProperties } from '../../types'; export interface Props extends BaseCSSProperties { direction: 'x' | 'y'; } export interface ThemedProps extends Props { theme: Theme; } declare const Scroll: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute & import("react").RefAttributes, Props>> & Omit & import("react").RefAttributes>, keyof import("react").Component>; export default Scroll;