/** * The suggest-prompt route card inside the WebUI plugin settings section: * provider/model for the ghost suggestion generation, chosen from the installed * provider catalog and staged until save. The chrome replicates the harness's * plugin settings cards (PluginCard/ValueField) so this card reads identically * to the built-in ones. * @module @studyzy/dsh-client-ui-suggest-prompt/settings-card */ import type { InjectFace, PropsLocale, PropsRuntime } from '@deepseek-ai/dsh-client-ui-slots'; import type { SuggestPromptCardFace } from './settings-controller.ts'; /** Props the renderer binds for the suggest-prompt card. */ export type SettingsCardProps = PropsRuntime<'settings.plugin.item'> & PropsLocale<'suggest-prompt.settings'> & InjectFace; /** * Render the suggest-prompt route card. * @param props - locale copy, the card snapshot, and its form actions. * @returns the card, or nothing while the namespace is unavailable. */ export declare function SettingsCard(props: SettingsCardProps): import("react").JSX.Element | null; //# sourceMappingURL=SettingsCard.d.ts.map