import type { NonEmptyArray } from "../types/generics.js"; export declare const intersect: (arr: Array) => (x: T) => boolean; export declare const ensureNonEmpty: (arr: Array, errMsg?: string) => NonEmptyArray;