export type EmbedInfo = { type: 'youtube'; id: string; title?: string; } | { type: 'vimeo'; id: string; title?: string; } | { type: 'unknown'; title?: string; }; export declare function parseEmbed(element: HTMLElement): EmbedInfo; //# sourceMappingURL=parse-embed.d.ts.map