/** * @fileoverview URL auto-linking utility: detects plain URLs and email addresses in text and converts them to markdown links. * * Handles patterns like: * - github.com/kubet/mk-blog * - https://github.com/kubet/mk-blog * - www.example.com * - example.com/path */ /** * Auto-links plain URLs in text by converting them to markdown links * * @param text - The text to process * @returns Text with plain URLs converted to markdown links * * @example * autoLinkUrls("Check out github.com/kubet/mk-blog") * // Returns: "Check out [github.com/kubet/mk-blog](https://github.com/kubet/mk-blog)" */ export declare function autoLinkUrls(text: string): string;