import * as React from 'react'; import { WithStyles } from '../withStyles'; import styles from './Card.styles'; interface CardProps extends WithStyles { fullWidth?: boolean; raised?: boolean; onClick?: (event: React.MouseEvent) => any; } export declare const Card: React.SFC; declare const _default: React.FunctionComponent & import("@material-ui/core/styles/withStyles").StyledComponentProps & import("../ThemeSelector/ThemeSelector").ThemeProps> & { Actions: React.ComponentType & import("@material-ui/core/styles/withStyles").StyledComponentProps>; Content: React.ComponentType & import("@material-ui/core/styles/withStyles").StyledComponentProps>; }; export default _default;