import type { CliNextCommandV1 } from '@nexusclaw/shared'; export declare class CliActionableError extends Error { readonly code: string; readonly fixHint: string; readonly nextCommands: ReadonlyArray; readonly details: Readonly>; readonly retryable: boolean; constructor(code: string, message: string, fixHint: string, nextCommands: ReadonlyArray, details: Readonly>, retryable?: boolean); }