/**
 * Convert Map, Set to Array
 */
export declare function convertToArray<T>(val: Array<T> | Set<T> | Map<any, T>): Array<T>;
