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