import { StyledComponent } from '../utils'; import { Flex } from './Flex'; import { ComponentProps } from 'react'; export declare type CardProps = { border?: boolean | string; shadow?: boolean | string; borderRadius?: number | string; shadowPosition?: 'top' | 'bottom'; }; declare const Card: StyledComponent, CardProps>; export { Card };