import { TMeUrlTypeUnion } from '@airgram-dev/core'; /** Represents a URL linking to an internal Telegram entity */ export declare class TMeUrlBaseModel { _: 'tMeUrl'; /** URL */ url: string; /** Type of the URL */ type: TMeUrlTypeUnion; }