import { SpaceProps, LayoutProps, FlexboxProps, BackgroundProps, ColorProps, BorderProps, PositionProps, ShadowProps } from 'styled-system'; import { Theme } from '@evlop/commons'; export interface GradientProps { opacity?: number; angle?: string | number; fromColor?: string; fromStop?: string | number; toColor?: string; toStop?: string | number; backgroundImageUrl?: string; } export interface BoxProps extends SpaceProps, LayoutProps, FlexboxProps, BackgroundProps, ColorProps, BorderProps, PositionProps, ShadowProps { gradient?: GradientProps; [key: string]: any; } export declare const Box: React.ComponentType; export default Box; //# sourceMappingURL=Box.d.ts.map