/** * Converts a Map to a plain object with string keys and values of type T. * * @param map - A Map or an object with an `entries` method that returns key-value pairs. * @returns A plain object containing the same entries as the Map. * * @example * ```ts * const map = new Map([['a', 1], ['b', 2]]); * const obj = mapToObject(map); * // { a: 1, b: 2 } * ``` */ export declare function mapToObject(map: Pick, 'entries'>): Record; //# sourceMappingURL=map-to-object.d.ts.map