export declare const URL_PLACEHOLDER = ""; /** * Replaces all valid URLs in the input string with a placeholder text. * * @param {string} input - The input string containing potential URLs. * @returns {string} A new string with all URLs replaced by the placeholder text. * * @example * const input = "$schema: https://www.example.com?foo=bar;"; * const result = removeUrlsFromString(input); * console.log(result); // "$schema: ;" */ export declare function removeUrlsFromString(input: string): string;