/** @purpose Props for the StatusBadge component — status selector. */ export type StatusBadgeProps = { /** @purpose Session status driving the visual indicator */ status: 'active' | 'waiting' | 'idle' | 'completed'; }; /** * @purpose Visual indicator of agent session status — emoji icon + text label. * @param props Component properties from StatusBadgeProps. */ export declare function StatusBadge(props: StatusBadgeProps): import("react/jsx-runtime").JSX.Element;