/** * Replace the references in the text with the correct links. * @param {string} environmentHashId The hashid of the environment. * @param {string} text The text to replace. * @returns {string} The text with the correct links. * @example * ```ts * const replaced = replaceLinks('eyr9dr', 'issue #eyr9dr') * console.log(replaced) * // => 'issue #eyr9dr' * ``` */ export declare const replaceLinks: (environmentHashId: string, text: string) => string; export default replaceLinks;