import React from "react"; import { IAgentScopeRuntimeResponse } from "../types"; export default function AgentScopeRuntimeResponseCard(props: { data: IAgentScopeRuntimeResponse; isLast?: boolean; contentPrepend?: React.ReactNode; contentAppend?: React.ReactNode; }): import("react/jsx-runtime").JSX.Element;