/** * Given a string, append a `- 1` on the end if no number is present * otherwise, increment the number * @param {string} str String to increment */ export declare function incrementString(str: string): string;