/** * Translate the integer indicating the charge to the appropriate text. * @param {Number} charge The integer indicating the charge. * @returns {String} A string representing a charge. */ export declare function getChargeText(charge: any): "" | "-" | "+" | "2+" | "2-";