import { typeCmp } from'./prelude.js';
/**
* Compares arrays element-wise up to common length.
*
* If all are equal then returns comparision result on array lengths.
*/exportdeclareconstarray: <T>(cmp: Cmp<T>) =>(as: T[], bs: T[]) =>import("./prelude.js").R;
exportdefault array;