/**
* Add a suffix to a string, if it does not already have the suffix
*
* @param input The string
* @param suffix The suffix
* @returns The string followed by the suffix
*/
export declarefunctionensureSuffix(input: string, suffix: string): string;
export default ensureSuffix;