import React from 'react';
export type StatusType = 'success' | 'warning' | 'danger' | 'neutral';
export type ThemeType = 'light' | 'dark';
interface CleanCardUltraV2Props {
    title: string;
    subtitle?: string;
    description?: string;
    image?: string;
    avatar?: string;
    badge?: string;
    tag?: string;
    tags?: string[];
    status?: StatusType;
    progress?: number;
    theme?: ThemeType;
    footer?: React.ReactNode;
    actions?: React.ReactNode;
    width?: number | string;
    hlight?: boolean | number;
    responsive?: boolean;
    onClick?: () => void;
    loading?: boolean;
    className?: string;
    height?: number | string;
}
declare const Card: React.FC<CleanCardUltraV2Props>;
export default Card;
