export interface GoalValidateStateOptions { /** Directory containing goal state files (e.g., `.aiws/goals/`) */ goalDir: string; /** Optional goal ID. If omitted, validate all goals */ goalId?: string; /** Heal dirty states in place (sole writer path via writeGoalState) */ heal?: boolean; /** Structured JSON output */ json?: boolean; } /** * `aiws goal validate-state` command handler. * * Validates one or all goal state files and reports errors/warnings. * Exit code 0 if all valid, 1 if any errors found. * With --heal, applies healGoalState and writes (TOOLING-003D). */ export declare function goalValidateStateCommand(options: GoalValidateStateOptions): Promise<{ ok: boolean; output: string; }>;