exporttypeReplace = (original: string,
searchment: string,
replacement: string,
count?: number,
) =>stringdeclaremodule'./replace' {
/** Replaces occurrences of a substring in a string with another substring */constreplace: Replaceexportdefault replace
}