import * as react from 'react'; import { HTMLAttributes } from 'react'; import { Status } from './status-dot.js'; interface ServiceHealthCardProps extends HTMLAttributes { /** Service name */ service: string; /** Health status */ status?: Status; /** Uptime string (e.g. '14d 3h') */ uptime?: string; /** Response time in ms */ responseTime?: string; /** Current version */ version?: string; /** Whether the card is in a loading state */ loading?: boolean; } declare const ServiceHealthCard: react.ForwardRefExoticComponent>; export { ServiceHealthCard, type ServiceHealthCardProps };