/** * Contextual guidance module for CLI error handling * Provides helpful troubleshooting steps based on error types */ export interface GuidanceOptions { dev?: boolean; } /** * Provide contextual guidance based on error type * @param error - The error that occurred * @param options - CLI options (e.g., dev mode) */ export declare function provideContextualGuidance(error: Error, options?: GuidanceOptions): void; //# sourceMappingURL=guidance.d.ts.map