import { Dictionary } from "./main";
export declare function values<T>(coll: Dictionary<T>): T[];
export declare function values<T>(coll: Map<unknown, T>): T[];
export declare function values<T>(coll: Set<T>): T[];
export declare function values<T>(coll: T[]): T[];
