import TurndownService from 'turndown';
export declare function createTurndownService(): TurndownService;
export declare function htmlToMarkdown(html: string): string;
export declare function formatArticleMarkdown(article: {
    title: string;
    content: string;
    byline?: string | null;
    baseUrl?: string;
}): string;
