import * as React from 'react'; import { StandardProps } from '..'; import { PaperProps } from '../Paper'; export interface CardProps extends StandardProps { raised?: boolean; } export type CardClassKey = 'root'; declare const Card: React.ComponentType; export default Card;