export interface RenderMarkdownInput { content: string; title?: string; tags?: string[]; includeTitleTags?: boolean; } export interface ParseMarkdownForHackMdImportInput { content: string; filePath: string; } export interface ParsedMarkdownForHackMdImport { content: string; title: string; tags?: string[]; hadTitleTagsFrontmatter: boolean; normalizedContent: string; } export declare function renderMarkdownForGitHubSync(input: RenderMarkdownInput): string; export declare function parseMarkdownForHackMdImport(input: ParseMarkdownForHackMdImportInput): ParsedMarkdownForHackMdImport; export declare function normalizeMarkdownForHackMdImport(input: ParseMarkdownForHackMdImportInput): string; //# sourceMappingURL=markdown.d.ts.map