export interface OEmbedInfo { version: '1.0'; url: string; type: `${OEmbedInfo.Type}`; title?: string; description?: string; screenshot_url?: string; thumbnail_url?: string; thumbnail_width?: number; thumbnail_height?: number; publication_date?: string; author?: string; author_url?: string; provider_name?: string; provider_url?: string; cache_age?: number; html?: string; width?: number; height?: number; } export declare namespace OEmbedInfo { enum Type { LINK = "link", PHOTO = "photo", RICH = "rich", VIDEO = "video" } }