export type ParseResult = { title: string; ogp: Record; seo: Record; oembedInfo?: { type: 'json' | 'xml'; url: string; }; }; export declare const parseHtml: (html: string) => ParseResult;