import type { IntentSpec, ParsedSidecarIntent } from "./intent_registry.js"; export declare const buildFallback: (message: string, spec: IntentSpec) => ParsedSidecarIntent; export declare const buildSidecarInstruction: (spec: IntentSpec) => string; export declare const buildContextSnippet: (context: unknown, spec: IntentSpec) => string; export declare const extractIntentAndResponse: (modelText: string, userMessage: string, spec: IntentSpec, options?: { onTelemetry?: (data: any) => void; }) => { intent: ParsedSidecarIntent; assistantResponse: string; };