export declare function handleApiError(error: unknown, context: string): never; export declare function handleHttpError(status: number, response: Response, context: string): never; export declare function withRetry(fn: () => Promise, maxRetries?: number, baseDelay?: number, context?: string): Promise;