import { RichTextUnion } from '@airgram-dev/core'; /** A rich text URL link */ export declare class RichTextUrlBaseModel { _: 'richTextUrl'; /** Text */ text: RichTextUnion; /** URL */ url: string; }