import type { FunctionDefinition } from '../../definition_types'; /** * The function substitutes in the string `str` any match of the regular expression `regex` * with the replacement string `newStr`. * * @example * ROW str = "Hello World" * | EVAL str = REPLACE(str, "World", "Universe") * * @example * ROW str = "Hello World" * | EVAL str = REPLACE(str, "\\\\s+", "") */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=replace.d.ts.map