import type { Api } from "@yaebal/core"; import type * as t from "@yaebal/types"; export interface PollAnswerContext extends t.PollAnswer { } export declare class PollAnswerContext { readonly api: Api; readonly update: t.Update; constructor(api: Api, update: t.Update); /** id of the user this update is from. */ get senderId(): number | undefined; /** first name of the user this update is from. */ get firstName(): string | undefined; } //# sourceMappingURL=poll-answer.d.ts.map