import { FunctionComponent, ReactNode, HTMLAttributes } from 'react';
import { Omit } from './util';
export declare const CardActions: FunctionComponent<HTMLAttributes<HTMLElement>>;
export declare const CardFooter: FunctionComponent<HTMLAttributes<HTMLElement>>;
export declare type CardProps = Omit<HTMLAttributes<HTMLElement>, 'title'> & {
    actions?: ReactNode;
    icon?: ReactNode;
    src?: string;
    meta?: ReactNode;
    title?: ReactNode;
};
export declare const Card: FunctionComponent<CardProps>;
