import type { StorePaths } from "../store.js"; import type { PiLikeContext } from "../pi-context.js"; import { runChorus } from "../chorus.js"; export interface HistoryCommandContext { storePaths?: StorePaths; ui?: { notify?: (content: string, level?: "info" | "warning" | "error") => void; show?: (content: string) => void; }; modelRegistry?: PiLikeContext["modelRegistry"]; signal?: AbortSignal; cwd?: string; replayRun?: typeof runChorus; } export declare function handleHistory(ctx: HistoryCommandContext, rawArgs?: string): Promise;