/****************************************************************************** * * (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 { MpcUnlockDto } from '../main/transactions/interface.js'; import './wasm.exec.js'; declare function CheckWasm(): boolean; declare function InitiateShares(dto: any): Promise; declare function Sign(dto: any): Promise; declare function RecoverShare(dto: any): Promise; declare function EmSeedRequest(dto: any): Promise; declare function Unlock(dto: MpcUnlockDto): Promise; declare function ChangeActiveAccount(dto: any): any; declare function ClearPV(): Promise; export { InitiateShares, Unlock, Sign, ChangeActiveAccount, EmSeedRequest, RecoverShare, CheckWasm, ClearPV };