/** * File System Error Handling Utilities * Provides error handling wrappers for file operations */ /** * Executes a file operation with error handling * @param operation - File operation function * @param context - Context description for error logging * @returns operation result or null if failed */ export declare function withFileErrorHandling(operation: () => T, context: string, additionalContext?: any): T | null; //# sourceMappingURL=errorHandling.d.ts.map