/// import bufio from 'bufio'; import { TransactionVersion } from '../../primitives/transaction'; import { WorkerMessage } from './workerMessage'; import { WorkerTask } from './workerTask'; export declare class CreateMinersFeeRequest extends WorkerMessage { readonly amount: bigint; readonly memo: Buffer; readonly spendKey: string; readonly transactionVersion: TransactionVersion; constructor(amount: bigint, memo: Buffer, spendKey: string, transactionVersion: TransactionVersion, jobId?: number); serializePayload(bw: bufio.StaticWriter | bufio.BufferWriter): void; static deserializePayload(jobId: number, buffer: Buffer): CreateMinersFeeRequest; getSize(): number; } export declare class CreateMinersFeeResponse extends WorkerMessage { readonly serializedTransactionPosted: Uint8Array; constructor(serializedTransactionPosted: Uint8Array, jobId: number); serializePayload(bw: bufio.StaticWriter | bufio.BufferWriter): void; static deserializePayload(jobId: number, buffer: Buffer): CreateMinersFeeResponse; getSize(): number; } export declare class CreateMinersFeeTask extends WorkerTask { private static instance; static getInstance(): CreateMinersFeeTask; execute({ amount, memo, spendKey, transactionVersion, jobId, }: CreateMinersFeeRequest): CreateMinersFeeResponse; } //# sourceMappingURL=createMinersFee.d.ts.map