/** * Removes trailing zeros from a number string. * @example removeTrailingZeros('123.45000000') // '123.45' * @param numStr - The number string to remove trailing zeros from. * @returns The number string without trailing zeros. */ export declare function removeTrailingZeros(numStr: string): string;