/**
 * Removes trailing occurrences of `char` from the end of `input`.
 *
 * @param input - the value to trim
 * @param char - the character to remove from the end
 */
export declare const trimEnd: (input: number | string, char: string) => number | string;
