import { BaseCoin as CoinConfig } from '@bitgo-beta/statics'; import { TransactionType } from '@bitgo-beta/sdk-core'; import { Transaction } from './transaction'; import { TransactionBuilder } from './transactionBuilder'; export declare class StakingWithdrawBuilder extends TransactionBuilder { protected _stakingAddress: string; protected _amount: string; constructor(_coinConfig: Readonly); protected get transactionType(): TransactionType; /** @inheritdoc */ initBuilder(tx: Transaction): void; /** * The address of the staking account. * * @param {string} stakingAddress public address of the staking account * @returns {StakeBuilder} This staking builder. * */ stakingAddress(stakingAddress: string): this; /** * The amount to withdraw expressed in Lamports, 1 SOL = 1_000_000_000 lamports * * @param {string} amount expressed in Lamports * @returns {StakeBuilder} This staking builder. * */ amount(amount: string): this; /** @inheritdoc */ protected buildImplementation(): Promise; } //# sourceMappingURL=stakingWithdrawBuilder.d.ts.map