import React, { HTMLAttributes } from 'react'; import { Elevation } from '../../interfaces'; export interface CardProps { /** The contents of the card */ children: React.ReactNode | React.ReactNode[]; /** The background color of the card */ background?: string; /** The card elevation determining the shadow */ elevation?: Elevation; /** Remove padding */ noPadding?: boolean; /** The card description */ subtitle?: string; /** Display the card heading */ title?: string; /** Show or hide card base */ transparent?: boolean; /** Control the position of the subtitle. Can be either inside the card or outside of it */ subtitlePlacement?: 'inside' | 'outside'; /** Passes the style object to subtitle */ subtitleStyle?: React.CSSProperties; } declare const Card: ({ background, children, elevation, noPadding, title, transparent, subtitle, subtitlePlacement, subtitleStyle, ...other }: CardProps & HTMLAttributes) => JSX.Element; export default Card;