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 { PropsWithChildren } from 'react'; import { Ref } from 'react'; declare interface addSXProps { sx?: SXProps; } declare type IThemeDevice = 'default' | 'tablet' | 'mobile'; export declare const Smooth: FC; declare interface StackProps extends addSXProps, PropsWithChildren { className?: string; isHover?: boolean; isRipple?: boolean; onClick?: () => void; onDragOver?: DragEventHandler; onDrop?: (e: DragEvent_2) => void; ref?: Ref; } declare type SXProps = ({ default: CSSObject; } & { [K in IThemeDevice]?: CSSObject; }) | ((theme: DefaultTheme) => { default: CSSObject; } & { [K in IThemeDevice]?: CSSObject; }); export { }