import { BaseError, ErrorCategory } from './BaseError'; export declare class BadGatewayError extends BaseError { constructor(message: string, category?: ErrorCategory); } export declare class BandwithLimitExceededError extends BaseError { constructor(message: string, category?: ErrorCategory); } export declare class GatewayTimeoutError extends BaseError { constructor(message: string, category?: ErrorCategory); } export declare class InsufficientStorageError extends BaseError { constructor(message: string, category?: ErrorCategory); } export declare class InternalServerError extends BaseError { constructor(message: string, category?: ErrorCategory); } export declare class LoopDetectedError extends BaseError { constructor(message: string, category?: ErrorCategory); } export declare class NetworkAuthenticationRequiredError extends BaseError { constructor(message: string, category?: ErrorCategory); } export declare class NotImplementedError extends BaseError { constructor(message: string, category?: ErrorCategory); } export declare class ServiceUnavaliableError extends BaseError { constructor(message: string, category?: ErrorCategory); } export declare class VersionNotSupportedError extends BaseError { constructor(message: string, category?: ErrorCategory); }