import { FullNode } from '../node'; import { Transaction } from '../primitives/transaction'; import { SpendingAccount } from '../wallet'; export declare class MinersFeeCache { private readonly node; private readonly cache; constructor(options: { node: FullNode; }); /** * Constructs a miners fee for an empty block at the given sequence * * @param sequence Block sequence to create the miners fee for * @param spendingKey Spend key of account to send the mining reward to * @returns */ createEmptyMinersFee(sequence: number, account: SpendingAccount): Promise; startCreatingEmptyMinersFee(sequence: number, account: SpendingAccount): void; } //# sourceMappingURL=minersFeeCache.d.ts.map