/** * CLI Message Constants * Standardized messages for consistent UX across all commands * @requirement CLI-MESSAGES-REVIEW-002 - Message constants */ /** * Standardized error messages */ export declare const ErrorMessages: { /** * No active task error */ noTask: () => void; /** * Invalid state transition error */ invalidState: (current?: string, attempted?: string) => void; /** * Task file not found */ taskFileNotFound: () => void; /** * Generic error with suggestion */ generic: (message: string, suggestion?: string) => void; }; /** * Standardized success messages */ export declare const SuccessMessages: { /** * Task created successfully */ taskCreated: (id: string, goal: string, status?: "ACTIVE" | "QUEUED") => void; /** * Workflow state updated */ stateUpdated: (state: string) => void; /** * Workflow synchronized */ workflowSynced: (currentState: string) => void; }; /** * Standardized info/tip messages */ export declare const InfoMessages: { /** * Create task suggestion */ createTask: () => void; /** * Next steps after validation */ validationNextSteps: () => void; }; /** * AI Assistant prompts (for Cursor integration) */ export declare const AIPrompts: { /** * Context files updated prompt */ contextFilesUpdated: () => void; /** * Checklist prompt (before display) */ checklistPrompt: () => void; /** * Checklist reminder (after display) */ checklistReminder: () => void; };