import { ResponseError } from "../../constants"; type IResponseTypeError = keyof typeof ResponseError | string; export declare class ResultError { static ErrorType: { HttpError: string; FetchError: string; TimeoutError: string; UnKnownError: string; }; type: IResponseTypeError; message?: string; extra?: Record; constructor(options: { type: IResponseTypeError; message: string; } & Record); stringify(): string; } export {};