/** * Utility functions for markdown rendering */ /** * Preprocess markdown links to handle special cases */ export declare const preprocessMarkdownLinks: (content: string) => string; /** * Generate a URL-friendly ID from text content */ export declare const generateId: (text: string | undefined) => string; /** * Check if a URL is external */ export declare const isExternalUrl: (url: string) => boolean; /** * Check if a URL is a hash link */ export declare const isHashLink: (url: string) => boolean; /** * Check if a URL is an internal path */ export declare const isInternalPath: (url: string) => boolean; /** * Smooth scroll to element by ID */ export declare const scrollToElement: (id: string) => void; //# sourceMappingURL=index.d.ts.map