export declare class EpoOpsError extends Error { status?: number | undefined; code?: string | undefined; details?: unknown | undefined; constructor(message: string, status?: number | undefined, code?: string | undefined, details?: unknown | undefined); } export declare class AuthenticationError extends EpoOpsError { constructor(message?: string); } export declare class RateLimitError extends EpoOpsError { constructor(message?: string); } export declare class ValidationError extends EpoOpsError { constructor(message?: string); } //# sourceMappingURL=errors.d.ts.map