import React from 'react'; import { IComponentBaseProps, ComponentSize } from '../types'; import { CardActionsProps as ActionProps } from './CardActions'; import { CardBodyProps as BodyProps } from './CardBody'; import { CardTitleProps as TitleProps } from './CardTitle'; import { CardImageProps as ImageProps } from './CardImage'; export type CardActionsProps = ActionProps; export type CardBodyProps = BodyProps; export type CardTitleProps = TitleProps; export type CardImageProps = ImageProps; export type CardProps = React.HTMLAttributes & IComponentBaseProps & { bordered?: boolean; imageFull?: boolean; normal?: ComponentSize | boolean; compact?: ComponentSize | boolean; side?: ComponentSize | boolean; }; declare const _default: React.ForwardRefExoticComponent & IComponentBaseProps & { bordered?: boolean | undefined; imageFull?: boolean | undefined; normal?: boolean | "lg" | "md" | "sm" | "xs" | undefined; compact?: boolean | "lg" | "md" | "sm" | "xs" | undefined; side?: boolean | "lg" | "md" | "sm" | "xs" | undefined; } & React.RefAttributes> & { Actions: React.ForwardRefExoticComponent & IComponentBaseProps & React.RefAttributes>; Body: React.ForwardRefExoticComponent & IComponentBaseProps & React.RefAttributes>; Title: React.ForwardRefExoticComponent & IComponentBaseProps & { tag?: React.ElementType | undefined; } & React.RefAttributes>; Image: React.ForwardRefExoticComponent>; }; export default _default;