import { ServerError } from '../types'; import { ResponseParameters } from '../types'; export declare class ServerErrorBase implements ServerError { ok: boolean; error_code: number; description: string; parameters: ResponseParameters; }