/****************************************************************************** * * (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. * ******************************************************************************/ import { AbcLanguage } from '../schema/abc'; import { CurrLang } from '../schema/model'; declare const AbcUtil: { encrypt: (secretKey: string, text: string) => any; decrypt: (secretKey: string, encrypted: string) => any; createSecretKey: (publicKey: string, mykey: any) => any; convertLanguage: (lang?: string | CurrLang) => AbcLanguage; selectApiLanguage: (currLang: string, browserLang: string) => string; }; export default AbcUtil;