import React from 'react'; import { CardPadding } from './CardContext.js'; export declare type CardProps = React.ComponentProps<'div'> & { padding?: CardPadding; attached?: 'top' | 'bottom' | 'left' | 'right' | 'all' | 'none'; }; export declare const Card: { ({ children, className, padding, attached, ...rest }: CardProps): JSX.Element; Header: React.FC; Content: React.FC, HTMLDivElement>>; Footer: React.FC; Media: React.FC, HTMLDivElement>>; Actions: React.FC; }; export declare type CardContentProps = React.ComponentProps<'div'>; export declare type CardMediaProps = React.ComponentProps<'div'>;