/** * Checks whether array 'a' starts with the elements of array 'b'. * @param a The main array to check * @param b The potential prefix array * @returns True if 'a' starts with all elements of 'b' in order, false otherwise * * @example * ```ts * startsWithArray([1, 2, 3, 4], [1, 2]) // true * startsWithArray([1, 2, 3, 4], [2, 3]) // false * ``` */ export declare function startsWithArray(a: ArrayLike, b: ArrayLike): boolean;