import type { Eq } from "@principia/prelude/Eq"; /** * Test whether or not a map is empty */ export declare const isEmpty: (d: ReadonlyMap) => boolean; /** * Test whether or not one `Map` contains all of the keys and values contained in another `Map` * * @since 1.0.0 */ export declare const isSubmap_: ( EK: Eq, EA: Eq ) => (me: ReadonlyMap, that: ReadonlyMap) => boolean; export declare const isSubmap: ( EK: Eq, EA: Eq ) => (that: ReadonlyMap) => (me: ReadonlyMap) => boolean; //# sourceMappingURL=guards.d.ts.map