import { type Cmp } from './prelude.js';
import type * as Predicate from './predicate.js';
/** Maps comparision function to non-ascending predicate. */
declare const nonAscending: <T>(cmp: Cmp<T>) => Predicate.t<T>;
export default nonAscending;
