import type { Ord } from "@principia/prelude/Ord"; /** * Derives an `Ord` over the `ReadonlyArray` of a given element type from the `Ord` of that type. The ordering between two such * arrays is equal to: the first non equal comparison of each arrays elements taken pairwise in increasing order, in * case of equality over all the pairwise elements; the longest array is considered the greatest, if both arrays have * the same length, the result is equality. * * @category Ord * @since 1.0.0 */ export declare function getOrd(O: Ord): Ord>; //# sourceMappingURL=ord.d.ts.map