import { AnyAction } from '@wharfkit/antelope'; import { type Client } from '../client'; import { VAccount } from '../types'; import { InitBatch } from '../types/campaign'; export declare class ActionService { private readonly client; constructor(client: Client); makeBatchAction: (initBatch: InitBatch, hash: string) => Promise; vTransferAction: (vacc: VAccount, batchPrice: number) => Promise; publishBatchAction: (batchId: number, numTasks: number) => AnyAction; depositAction: (amount: number, vacc: VAccount) => AnyAction; }