import type * as t from "@yaebal/types"; import { GuestMessageContextBase } from "../generated/guest-message.js"; /** * GuestMessageContext = generated base + hand-written ergonomic overloads. * positional sugar for `answer` — pass the result directly. publishes it as a * real message in the chat where the guest bot was summoned (unlike inline * mode, there's no popup — this is the only way to respond). */ export declare class GuestMessageContext extends GuestMessageContextBase { answer(result: t.InlineQueryResult): Promise; answer(params: Omit): Promise; } //# sourceMappingURL=guest-message.d.ts.map