import { AssertionFailed } from '../../errors';
import { Result } from 'defekt';
declare const assertMapIsEmpty: <TKey, TValue>(actual: Map<TKey, TValue>) => Result<undefined, AssertionFailed>;
export { assertMapIsEmpty };
