/** The shell plugin's card: the limits every command the agent runs is bound by. */ import type { InjectFace, PropsLocale, PropsRuntime } from '@deepseek-ai/dsh-client-ui-slots'; import type { BashCardFace } from './bash-card-controller.ts'; /** Props the renderer binds for the shell card. */ export type BashCardProps = PropsRuntime<'settings.plugin.item'> & PropsLocale<'settings.plugins'> & InjectFace; /** * Render the shell card. * @param props - locale copy, the card snapshot, and its form actions. * @returns the card. */ export declare function BashCard(props: BashCardProps): import("react").JSX.Element; //# sourceMappingURL=BashCard.d.ts.map