import { default as React } from 'react';
export interface MetricCardProps {
    title: string;
    value: string | number;
    subtitle?: string;
    icon?: React.ReactNode;
    trend?: {
        value: number;
        isPositive: boolean;
    };
    styles?: {
        theme?: string;
        width?: string;
        height?: string;
        padding?: string;
        borderRadius?: string;
    };
}
declare const MetricCard: React.NamedExoticComponent<MetricCardProps>;
export default MetricCard;
//# sourceMappingURL=index.d.ts.map