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