import type { Api } from "@yaebal/core"; import type * as t from "@yaebal/types"; export interface ManagedBotContext extends t.ManagedBotUpdated { } export declare class ManagedBotContext { 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=managed-bot.d.ts.map