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