import { Provider, Wallet } from "ethers"; export declare function printAccountDetails(provider: Provider, address: string): Promise; export declare function getAccountBalance(address: string, provider: Provider): Promise; export declare function validateAddress(address: string): { valid: boolean; safe: string; }; export declare function getNonce(provider: Provider, address: string): Promise; export declare function addressValid(address: string): boolean; export declare function getNativeBalance(provider: Provider, address: string): Promise; export declare function getEoa(accountPrivateKey: string): Promise; export declare function transferNative(provider: Provider, wallet: Wallet, recipientAddress: string, amountToTransferInWei: BigInt, nativeGasUnit: number): Promise;