import { ConfigPreset, NodeAccount, NodePreset } from '../model'; import { VotingKeyFileProvider } from './VotingKeyFileProvider'; export interface VotingParams { target: string; user: string; votingKeyFileProvider?: VotingKeyFileProvider; } export declare class VotingService { protected readonly params: VotingParams; constructor(params: VotingParams); run(presetData: ConfigPreset, nodeAccount: NodeAccount, nodePreset: NodePreset, currentNetworkEpoch: number | undefined, updateVotingKey: boolean | undefined, nemesisBlock: boolean): Promise; } //# sourceMappingURL=VotingService.d.ts.map