import { CreateAccountBuilderParams, TransferSolBuilderParams } from './operations'; import type { Convergence } from '../../Convergence'; import { TransactionBuilderOptions } from '../../utils'; /** * This client allows you to access the underlying Transaction Builders * for the write operations of the System module. * * @see {@link SystemClient} * @group Module Builders * */ export declare class SystemBuildersClient { protected readonly convergence: Convergence; constructor(convergence: Convergence); /** {@inheritDoc createAccountBuilder} */ createAccount(input: CreateAccountBuilderParams, options?: TransactionBuilderOptions): Promise>; /** {@inheritDoc transferSolBuilder} */ transferSol(input: TransferSolBuilderParams, options?: TransactionBuilderOptions): Promise>; }