import { default as React } from 'react'; export interface ComponentThermal { id: string; name: string; /** Temperature in Celsius */ temperatureCelsius: number; /** Minimum safe temperature */ minSafeCelsius: number; /** Maximum safe temperature */ maxSafeCelsius: number; /** Heater active status */ heaterActive?: boolean; } export interface ThermalHeatmapCardProps { /** Component thermal data */ components?: ComponentThermal[]; /** Average spacecraft temperature */ averageTemperature?: number; /** Compact mode (fewer items) */ compact?: boolean; /** Loading state */ loading?: boolean; /** Custom class name */ className?: string; } /** * ThermalHeatmapCard - Displays spacecraft thermal status * * @example * ```tsx * * ``` */ export declare const ThermalHeatmapCard: React.NamedExoticComponent;