type TErrorKey = "FAILED_TO_GET_AUTH_TOKEN" | "INVALID_PAGINATION" | "API_CALL_EXCEPTION"; export declare class EmbeddedWalletError extends Error { private _key; constructor(message: string, _key: TErrorKey); get key(): TErrorKey; get code(): number; } export interface IErrorData { httpStatusCode: number; message: string; code?: string; } export declare class EmbeddedWalletApiError extends Error { private _data; constructor(_data: IErrorData); get httpStatusCode(): number; get code(): string; } export {};