/** * Creates a regular expression from a list of module names to use as a replacer * regex in a TS/JS file to update relative imports to use their proper module * import names. * @param {string[]} moduleNames An array of module names. */ export declare function createRelativeImportRegex(moduleNames: string[]): RegExp;