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