import * as React from 'react'; import { StandardProps } from '..'; import { PaperProps } from '../Paper'; export interface CardProps extends StandardProps { /** * If `true`, the card will use raised styling. */ raised?: boolean; } export type CardClassKey = 'root'; /** * * Demos: * * - [Cards](https://mui.com/components/cards/) * * API: * * - [Card API](https://mui.com/api/card/) * - inherits [Paper API](https://mui.com/api/paper/) */ export default function Card(props: CardProps): JSX.Element;