export interface PollInfo { id: number; optionA: string; optionB: string; } export interface PollResults { pollId: number; optionA: number; optionB: number; total: number; } export interface VoterStats { totalVotes: number; } export interface VoteBattleConfig { contractAddress: string; rpcUrl?: string; } export declare const POLLS: PollInfo[];