import { Authenticator } from './Authenticator.js'; import { DataHash } from '../hash/DataHash.js'; export declare class Transaction { readonly authenticator: Authenticator; readonly transactionHash: DataHash; readonly leafValue: DataHash; private constructor(); static create(authenticator: Authenticator, transactionHash: DataHash): Promise; }