import { TokenErrorResponse } from 'dexie-cloud-common'; export declare class TokenErrorResponseError extends Error { title: string; messageCode: 'INVALID_OTP' | 'INVALID_EMAIL' | 'LICENSE_LIMIT_REACHED' | 'GENERIC_ERROR'; message: string; messageParams?: { [param: string]: string; }; constructor({ title, message, messageCode, messageParams, }: TokenErrorResponse); }