/** The agent loop's card: how many tool calls one step may run at once. */ import type { InjectFace, PropsLocale, PropsRuntime } from '@deepseek-ai/dsh-client-ui-slots'; import type { AgentLoopCardFace } from './agent-loop-card-controller.ts'; /** Props the renderer binds for the agent-loop card. */ export type AgentLoopCardProps = PropsRuntime<'settings.plugin.item'> & PropsLocale<'settings.plugins'> & InjectFace; /** * Render the agent-loop card. * @param props - locale copy, the card snapshot, and its form actions. * @returns the card. */ export declare function AgentLoopCard(props: AgentLoopCardProps): import("react").JSX.Element; //# sourceMappingURL=AgentLoopCard.d.ts.map