import React from 'react'; import { CardContent } from './CardContent'; import { CardDesc } from './CardDesc'; import { CardDivider } from './CardDivider'; import { CardFooter } from './CardFooter'; import CardImg from './CardImg'; import { CardTitle } from './CardTitle'; export interface CardProps { className?: string; hoverable?: boolean; shadow?: boolean; w?: string; h?: string; children?: React.ReactNode; } declare const defaultProps: { w: string; shadow: boolean; hoverable: boolean; }; declare type NativeAttrs = Omit, keyof CardProps>; export declare type GCardProps = CardProps & typeof defaultProps & NativeAttrs; declare type CardComponent = React.ForwardRefExoticComponent & React.RefAttributes> & { Title: typeof CardTitle; Content: typeof CardContent; Desc: typeof CardDesc; Divider: typeof CardDivider; Img: typeof CardImg; Footer: typeof CardFooter; }; declare type ComponentProps = Partial & Omit & NativeAttrs; declare const _default: CardComponent; export default _default;