import React, { HTMLAttributes } from 'react'; import { Elevation, Color } from '../../../interfaces'; export interface CardProps { /** The contents of the card */ children: React.ReactNode | React.ReactNode[]; /** The card elevation determining the shadow */ elevation?: Elevation; /** Display the card heading */ heading?: string; /** Card heading's color */ headingColor?: Color; /** The background color of the card */ backgroundColor?: Color; /** The background image of the card */ backgroundImage?: string; /** Height of the card */ height?: string; } declare const Card: ({ children, elevation, heading, headingColor, backgroundColor, backgroundImage, height, ...other }: CardProps & HTMLAttributes) => JSX.Element; export default Card;