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