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