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