import { AccountId, Client, PrivateKey, PublicKey } from '@hashgraph/sdk'; import { BigNumber } from 'bignumber.js'; import { HederaAccountInfo, SimpleHederaClient } from './service'; export declare class SimpleHederaClientImpl implements SimpleHederaClient { private _client; private _privateKey; constructor(client: Client, privateKey: PrivateKey | null); getPrivateKey(): PrivateKey | null; getPublicKey(): PublicKey; getAccountInfo(accountId: string): Promise; getAccountId(): AccountId; createAccount(options: { publicKey: PublicKey; initialBalance: BigNumber; }): Promise; } //# sourceMappingURL=hedera-client.d.ts.map