import { default as default_2 } from 'react'; export declare const description = "A card to display metrics and its trend"; export declare function MetricCard({ title, value, trend, trendValue, className }: MetricCardProps): default_2.JSX.Element; export declare interface MetricCardProps { title: string; value: string; trend: Trend; trendValue: string; className?: string; } declare enum Trend { UP = "up", DOWN = "down", FLAT = "flat" } export { }