import { TransactionType } from '@bitgo-beta/sdk-core'; import { BaseCoin as CoinConfig } from '@bitgo-beta/statics'; import { DecodedSignedTx, DecodedSigningPayload, UnsignedTransaction } from '@substrate/txwrapper-core'; import { Transaction } from './transaction'; import { TransactionBuilder } from './transactionBuilder'; export declare class UnnominateBuilder extends TransactionBuilder { constructor(_coinConfig: Readonly); /** * * Declare no desire to either validate or nominate. * Note that no arguments are needed. * * @returns {UnsignedTransaction} an unsigned Dot transaction * * @see https://polkadot.js.org/docs/substrate/extrinsics/#chill */ protected buildTransaction(): UnsignedTransaction; protected get transactionType(): TransactionType; /** @inheritdoc */ validateDecodedTransaction(decodedTxn: DecodedSigningPayload | DecodedSignedTx): void; /** @inheritdoc */ protected fromImplementation(rawTransaction: string): Transaction; } //# sourceMappingURL=unnominateBuilder.d.ts.map