type VoteParams = {
    votingId: string;
    vote: string;
    connection: {
        workerSeed: string;
        votingUrl: string;
        solutionNamespace: string;
    };
};
export declare const voteOnPolkadot: (params: VoteParams) => Promise<{
    votingTxHash: string;
}>;
export {};
