import { AISystem } from '../core/AISystem'; export interface GoalCommandOptions { add?: string; list?: boolean; complete?: string; progress?: string; status?: string; remove?: string; } export declare class GoalCommand { private system; private logger; constructor(system: AISystem); execute(options: GoalCommandOptions): Promise; private addGoal; private completeGoal; private updateProgress; private updateStatus; private removeGoal; private listGoals; }