import { Component } from 'react'; import { CSSObject } from 'styled-components'; import { DefaultTheme } from 'styled-components'; import { DragEvent as DragEvent_2 } from 'react'; import { DragEventHandler } from 'react'; import { FC } from 'react'; import { IStyledComponentBase } from 'styled-components/dist/types'; import { PropsWithChildren } from 'react'; import { Ref } from 'react'; import { Substitute } from 'styled-components/dist/types'; declare type AddDollarSign = { [K in keyof T as `$${string & K}`]: T[K]; }; declare interface addSXProps { sx?: SXProps; } declare type DefaultScrollProps = { vertical?: boolean; horizontal?: boolean; isAlwaysVertical?: boolean; isAlwaysHorizontal?: boolean; }; declare type IThemeDevice = 'default' | 'tablet' | 'mobile'; export declare const Scroll: FC; export declare type ScrollProps = StackProps & DefaultScrollProps; declare interface StackProps extends addSXProps, PropsWithChildren { className?: string; isHover?: boolean; isRipple?: boolean; onClick?: () => void; onDragOver?: DragEventHandler; onDrop?: (e: DragEvent_2) => void; ref?: Ref; } export declare const StyledScroll: IStyledComponentBase<"web", Substitute> & string & Omit, keyof Component>; export declare type StyledScrollProps = StackProps & AddDollarSign; declare type SXProps = ({ default: CSSObject; } & { [K in IThemeDevice]?: CSSObject; }) | ((theme: DefaultTheme) => { default: CSSObject; } & { [K in IThemeDevice]?: CSSObject; }); export { }