import { Api } from "../2_tl.js"; import type { ChatP, PeerGetter } from "./1_chat_p.js"; /** A poll voter. */ export interface PollVoter { /** The voter chat. */ voter: ChatP; /** The indexes of the cast options. */ optionIndexes: number[]; /** The point in time when the vote was cast. */ votedAt: number; } export declare function constructPollVoter(mpv: Api.MessagePeerVote, getPeer: PeerGetter): PollVoter; //# sourceMappingURL=2_poll_voter.d.ts.map