type Comparable = string | number | Date; /** * fast non-mutating intersection of multiple sorted arrays * * only works with array elements that can be compared with < and > * * returns incorrect result if any input array is out of order */ export declare function intersectSorted(lists: T[][]): T[]; export {};