export interface AssistantSearchInput { query: string; limit?: number; } export interface AssistantSearchResult { title: string; snippet: string; url?: string; } export interface AssistantSearchOutput { results: AssistantSearchResult[]; } /** * Mock search handler for the assistant. * Returns sample results for demo; replace with real search in production. */ export declare function assistantSearch(input: AssistantSearchInput): Promise; /** Type for the contract (for handler binding) */ export type AssistantSearchHandler = (input: Parameters[0]) => Promise;