export type MarkdownResult = { title: string | null; byline: string | null; excerpt: string | null; markdown: string; text: string; length: number; }; export declare function htmlToMarkdown(html: string, url?: string): MarkdownResult; //# sourceMappingURL=markdown.d.ts.map