/** * Determine if all array elements are of a certain type * * @param x - The array to test * @param guard - The function to test for the specific type * @returns The result * * @example * isArrayOfType([1, 5], isNumber) // Returns: true * isArrayOfType([1, 'foo'], isNumber) // Returns: false */ export declare function isArrayOfType(x: any[], guard: (y: any) => y is T): x is T[];