import { ParametersSkip1, InlineQuery } from '@mtcute/core'; import { TelegramClient } from '@mtcute/core/client.js'; import { UpdateContext } from './base.js'; /** * Context of an inline query update. * * This is a subclass of {@link InlineQuery}, so all its fields are also available. */ export declare class InlineQueryContext extends InlineQuery implements UpdateContext { readonly client: TelegramClient; readonly _name: "inline_query"; constructor(client: TelegramClient, query: InlineQuery); /** Answer to this inline query */ answer(...params: ParametersSkip1): Promise; }