import type { PrivateKey, PublicKey } from '@hashgraph/sdk'; import { WalletHedera } from './abstract'; export declare class PrivateKeySoftwareWallet extends WalletHedera { private _privateKey; constructor(privateKey: PrivateKey); getTransactionSigner(): Promise<(transactionBody: Uint8Array) => Promise>; getPublicKey(): Promise; getPrivateKey(): Promise; hasPrivateKey(): boolean; } //# sourceMappingURL=software-private-key.d.ts.map