import { Version } from '@tma.js/types'; import { MaybeAccessor } from '../types.js'; export interface WithVersion { /** * The currently supported Telegram Mini Apps version by the Telegram client. */ version: MaybeAccessor; } export declare const withVersion: (obj: O) => O & WithVersion;