export declare enum TMBErrorType { FailedFetchSessionsActive = "FailedFetchSessionsActive", FailedFetchSessionsRefresh = "FailedFetchSessionsRefresh", FailedFetchSessionsLogout = "FailedFetchSessionsLogout" } export declare class TMBError extends Error { type?: TMBErrorType; constructor(type: TMBErrorType, message: string); }