import * as react from 'react'; import { HTMLAttributes } from 'react'; import { Status } from './status-dot.js'; interface HostCardProps extends HTMLAttributes { /** Hostname */ hostname: string; /** IP address */ ip?: string; /** Status */ status?: Status; /** CPU load (e.g. '23%') */ cpu?: string; /** Memory usage (e.g. '6.2/16 GB') */ memory?: string; /** Disk usage (e.g. '45%') */ disk?: string; /** Uptime */ uptime?: string; /** Number of containers running */ containers?: number; /** Whether the card is loading */ loading?: boolean; } declare const HostCard: react.ForwardRefExoticComponent>; export { HostCard, type HostCardProps };