/** * The web-search provider's card: its endpoint, its per-request search budget, * and the key — which is written through the credentials domain, never into * the settings section, so the literal never rides a response. */ import type { InjectFace, PropsLocale, PropsRuntime } from '@deepseek-ai/dsh-client-ui-slots'; import type { WebSearchCardFace } from './web-search-card-controller.ts'; /** Props the renderer binds for the web-search card. */ export type WebSearchCardProps = PropsRuntime<'settings.plugin.item'> & PropsLocale<'settings.plugins'> & InjectFace; /** * Render the web-search card. * @param props - locale copy, the card snapshot, and its form actions. * @returns the card. */ export declare function WebSearchCard(props: WebSearchCardProps): import("react").JSX.Element; //# sourceMappingURL=WebSearchCard.d.ts.map