/** * Kubernetes error handling utilities with actionable guidance */ import type { ErrorGuidance } from '../../types'; /** * Extract error with actionable guidance for Kubernetes operations * * @param error - The error to extract guidance from * @param operation - Optional operation context to include in the message */ export declare function extractK8sErrorGuidance(error: unknown, operation?: string): ErrorGuidance; //# sourceMappingURL=errors.d.ts.map