/** * @description * Like String.prototype.replace(), but replaces the last instance * rather than the first. */ export declare function replaceLast(target: string | undefined | null, search: string, replace: string): string;