import React from 'react'; export interface StatusCardProps { label: string; value: string; icon?: string; color?: 'green' | 'yellow' | 'red' | 'cyan' | 'blue' | 'gray'; dimmed?: boolean; } export declare const StatusCard: React.FC;