/** * Base error class + recovery / retry utilities shared by every category. */ export declare class MobileError extends Error { readonly code: string; retryInfo?: string; constructor(message: string, code: string); } /** Recovery hints: suggested tool calls to resolve each error type */ export declare const RECOVERY_HINTS: Record; }[]>; /** Get recovery hints for an error, with dynamic handling for MODULE_NOT_LOADED */ export declare function getRecoveryHints(error: unknown): { tool: string; args: Record; }[]; export declare function isRetryable(error: unknown): boolean; //# sourceMappingURL=base.d.ts.map