import type { SessionCard as SessionCardData } from '../state/view-model.type.js'; /** @purpose Props for the SessionCard component — session data to render. */ export type SessionCardProps = { /** @purpose Session card data from the ViewModel */ card: SessionCardData; }; /** * @purpose Renders one agent session as a bordered card with status badge and metadata. * @invariant Absent optional fields (tokens, cpu, memory) are not rendered — degradation per spec. * @param props Component properties from SessionCardProps. */ export declare function SessionCard(props: SessionCardProps): import("react/jsx-runtime").JSX.Element;