import MissingPathCallback from "./MissingPathCallback"; import RegExReplacer from "./RegExReplacer"; /** * * Creates a RegEx replacer function to use the corresponding values and tag style. * @param {object} values - The object containing values for replacement. * @param {RegExp} tagEdges - A regular expression pattern for matching the start or end of a tag. * @param {MissingPathCallback} onMissingPath - A callback function to handle missing tags. * @returns {RegExReplacer} A function that takes a tag and replaces it with a value. */ declare const tagReplacer: (values: object, tagEdges: RegExp, onMissingPath: MissingPathCallback) => RegExReplacer; export default tagReplacer;