/** * Return an array of values that are present in this dictionary * * @template {object} T * @param {T} dictionary * @returns {Array} */ export default function dictValues(dictionary: T): Array;