/**
 * Converts input to Map.
 *
 * @param {*} thing
 * @returns {Map<any, any>}
 */
export declare const iteratorToMap: (thing: any) => Map<any, any>;
export declare const iterableToMap: (thing: any) => Map<any, any>;
