import { Utils } from "@arkecosystem/crypto"; export declare class Signer { protected network: number; protected nonce: Utils.BigNumber; constructor(network: number, nonce: string); makeTransfer(opts: Record): any; makeDelegate(opts: Record): any; makeSecondSignature(opts: Record): any; makeVote(opts: Record): any; makeMultiSignatureRegistration(opts: Record): any; makeIpfs(opts: Record): any; makeMultipayment(opts: Record): any; makeHtlcLock(opts: Record): any; makeHtlcClaim(opts: Record): any; makeHtlcRefund(opts: Record): any; private incrementNonce; private toSatoshi; }