import { type BgentRuntime } from "../runtime"; import { type Goal, type Message, type State } from "../types"; declare function handler(runtime: BgentRuntime, message: Message, state: State | undefined, options?: { [key: string]: unknown; }): Promise; declare const _default: { name: string; validate: (runtime: BgentRuntime, message: Message) => Promise; description: string; condition: string; handler: typeof handler; examples: { context: string; messages: { user: string; content: { content: string; }; }[]; outcome: string; }[]; }; export default _default;