import React from 'react'; import { BoxProps } from '../Box'; export declare type CardProps = Omit & { /** Whether the card should be light blue-navy or dark blue-navy */ variant?: 'light' | 'lighter' | 'dark' | 'darker'; }; /** * Extends Box * * A card is simply a basic layout component with additional style props. */ export declare const Card: React.ForwardRefExoticComponent & React.RefAttributes>; export default Card;