/**
 * Get the value at path of Map.  Useful for nested maps (d3-array group, etc).
 * Similar to lodash get() but for Map instead of Object
 */
export declare function get<K, V>(map: Map<K, V>, path: string[]): Map<K, V>;
