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 WalletInitializationBuilder extends TransactionBuilder { private _nonceAddress; private _amount; constructor(_coinConfig: Readonly); protected get transactionType(): TransactionType; /** @inheritDoc */ initBuilder(tx: Transaction): void; /** * Sets the amount to fund the nonce account * * @param amount amount in lamports to fund the nonce account */ amount(amount: string): this; /** * Sets the address for the nonce account * @param nonceAddress address of the new nonce account */ address(nonceAddress: string): this; /** @inheritdoc */ protected buildImplementation(): Promise; } //# sourceMappingURL=walletInitializationBuilder.d.ts.map