/** * Returns true iff all elements in the shorter list equal (===) the elements * in the longer list. */ declare const listPrefixMatch: (a: T[], b: T[]) => boolean; export default listPrefixMatch;