import React from 'react'; import { BackgroundColorProps, BoxShadowProps, FlexboxProps, LayoutProps, PositionProps, SpaceProps, BackgroundImageProps, GridProps, Theme, BackgroundProps } from 'styled-system'; import { SpacingTypes } from '../../theme/Spacing'; import { BackgroundColorTypes } from '../../theme/Colors'; import { BorderPropsCustom } from '../../theme/BorderRadiuses/types'; export interface BoxProps extends FlexboxProps, SpaceProps, LayoutProps, BorderPropsCustom, PositionProps, BackgroundColorProps, BackgroundImageProps, BoxShadowProps, GridProps, BackgroundProps, React.HTMLAttributes { /** * Controls the HTML element that that will be rendered in the DOM. */ as?: keyof JSX.IntrinsicElements; /** * Same as HTML */ alt?: string; /** * Same as HTML * */ src?: string; /** * Same as HTML */ href?: string; /** * Same as HTML */ target?: string; /** * Same as HTML */ rel?: string; /** * Same as HTML */ type?: string; } declare const Box: import("styled-components").StyledComponent<"div", any, BoxProps, never>; export default Box;