import { BgentRuntime } from "./runtime"; import { type Goal, type UUID } from "./types"; export declare const getGoals: ({ runtime, room_id, user_id, onlyInProgress, count, }: { runtime: BgentRuntime; room_id: UUID; user_id?: `${string}-${string}-${string}-${string}-${string}` | undefined; onlyInProgress?: boolean | undefined; count?: number | undefined; }) => Promise; export declare const formatGoalsAsString: ({ goals }: { goals: Goal[]; }) => string; export declare const updateGoal: ({ runtime, goal, }: { runtime: BgentRuntime; goal: Goal; }) => Promise; export declare const createGoal: ({ runtime, goal, }: { runtime: BgentRuntime; goal: Goal; }) => Promise;