import React from 'react'; import { DCardAction } from './CardAction'; import { DCardActions } from './CardActions'; import { DCardContent } from './CardContent'; import { DCardHeader } from './CardHeader'; export interface DCardProps extends React.HTMLAttributes { dBorder?: boolean; dShadow?: boolean | 'hover'; } export declare const DCard: { (props: DCardProps): JSX.Element | null; Actions: typeof DCardActions; Action: typeof DCardAction; Header: typeof DCardHeader; Content: typeof DCardContent; };