import ReplaceTagsOptions from "./ReplaceTagsOptions"; /** * Replaces tags in a text with corresponding values from an object. * @param {string} text - The text containing tags to be replaced. * @param {object | string} values - The object containing values for replacement. * @param {ReplaceTagsOptions} [options] - Optional configuration for tag parsing. * @returns {string} The text with replaced tags. */ declare const replaceTags: (text: string, values: object | string, options?: Partial) => string; export default replaceTags;