import React from 'react'; import { CardTypes } from '../utils/prop-types'; import CardFooter from './card-footer'; import CardContent from './card-content'; interface Props { hoverable?: boolean; shadow?: boolean; className?: string; width?: string; type?: CardTypes; } declare const defaultProps: { type: "default" | "secondary" | "success" | "warning" | "error" | "dark" | "lite" | "alert" | "purple" | "violet" | "cyan"; hoverable: boolean; shadow: boolean; width: string; className: string; }; declare type NativeAttrs = Omit, keyof Props>; export declare type CardProps = Props & typeof defaultProps & NativeAttrs; declare type MemoCardComponent

= React.NamedExoticComponent

& { Footer: typeof CardFooter; Actions: typeof CardFooter; Content: typeof CardContent; Body: typeof CardContent; }; declare type ComponentProps = Partial & Omit & NativeAttrs; declare const _default: MemoCardComponent; export default _default;