import algosdk from 'algosdk'; import Account = algosdk.Account; import Algodv2 = algosdk.Algodv2; import Kmd = algosdk.Kmd; /** * @deprecated Use `algorand.account.kmd.getLocalNetDispenserAccount()` instead. * * Returns an Algorand account with private key loaded for the default LocalNet dispenser account (that can be used to fund other accounts) * * @param algod An algod client * @param kmd A KMD client, if not specified then a default KMD client will be loaded from environment variables */ export declare function getLocalNetDispenserAccount(algod: Algodv2, kmd?: Kmd): Promise;