import { OnIntentFallback } from '../types/agent.js'; import 'http-status-codes'; import '../types/memory.js'; import '../types/stream.js'; import '../types/connector.js'; interface AgentOptions { onIntentFallback?: OnIntentFallback; } declare function setOptions(options: AgentOptions): void; declare function getOptions(): AgentOptions; declare function getOnIntentFallback(): OnIntentFallback | undefined; export { type AgentOptions, getOnIntentFallback, getOptions, setOptions };