import type { Vote } from './types';
export declare const partitionAlreadyVoted: (votings: Vote[], config: {
    indexerUrl: string;
    solutionNamespace: string;
    workerAddress: string;
}) => Promise<{
    alreadyVoted: Vote[];
    notVoted: Vote[];
}>;
