/**
 * Check if two maps have the same keys and values.
 * @param {T} a - The first map.
 * @param {U} b - The map to compare to a.
 * @returns `true`
 */
export declare function equalMap<T extends Map<unknown, unknown>, U extends T>(a: T, b: U): boolean;
