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