/****************************************************************************** * * (C) 2022 AhnLab Blockchain Company, Inc. All rights reserved. * Any part of this source code can not be copied with any method without * prior written permission from the author or authorized person. * ******************************************************************************/ export declare class CustomError extends Error { name: string; timestamp: number | undefined; constructor({ name, message }: { name: any; message: any; }); toString(): string; } export declare const checkErrorInUI: (error: any, type: any) => boolean; export declare const makeAbcErrorDescription: (error: { data: { originalError: { code: number; }; }; }) => string;