/**
 Compare the first n elements of an array with another, longer array
*/
export declare function arrayStartingMatch(a: Array<any>, b: Array<any>): boolean;
