import { BackgroundProps, BorderProps, ColorProps, FlexboxProps, LayoutProps, PositionProps, ShadowProps, SpaceProps, TypographyProps } from 'styled-system'; /** * A simple styled-component to contain content in a card UI using styled-system. * * @see See [styled-system docs](https://github.com/jxnblk/styled-system/blob/master/docs/api.md) for usage of those props */ declare const StyledCard: import("styled-components").StyledComponent<"div", any, BackgroundProps>, import("csstype").Property.Background> & BorderProps>, import("csstype").Property.Border> & FlexboxProps>> & LayoutProps>> & PositionProps>> & SpaceProps>, string | number | symbol> & TypographyProps>> & ShadowProps>> & ColorProps>, string | number | symbol>, never>; /** @component */ export default StyledCard;