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: "dark" | "secondary" | "success" | "error" | "warning" | "cyan" | "violet" | "purple" | "alert" | "default" | "lite"; 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;