import { TObject } from "../type/_types";
/**
 * Transform object to Map
 * @param obj The object to transform
 * @returns Map from the object
 */
export declare function toMap(obj?: TObject): Map<unknown, unknown>;
