import type { CardProps } from './types'; import { CardAction } from './CardAction'; import { CardActions } from './CardActions'; import { CardContent } from './CardContent'; import { CardHeader } from './CardHeader'; export declare const Card: { (props: CardProps): React.ReactElement | null; Header: typeof CardHeader; Content: typeof CardContent; Actions: typeof CardActions; Action: typeof CardAction; };