import type CorePlugin from "./plugin.js"; import type { GoalState } from "../domain/types.js"; import { type GoalStorageDiagnosticReport } from "../persistence/diagnostics.js"; import { type GoalArchiveRecord } from "../persistence/store.js"; type PluginInput = Parameters[0]; type PluginHooks = Awaited>; export declare function formatDetailedGoalStatus(goal: GoalState | null): string; export declare function formatGoalContract(goal: GoalState | null): string; export declare function formatGoalHistory(records: GoalArchiveRecord[], selector?: string): string; export declare function formatGoalDoctor(report: GoalStorageDiagnosticReport): string; export declare function enhanceGoalControls(input: PluginInput, hooks: PluginHooks): void; export {}; //# sourceMappingURL=controls.d.ts.map