import { Matcher } from './Matcher'; export declare class ArrayOfMatcher extends Matcher> { private readonly elementMatcher; constructor(elementMatcher: Matcher); matchValue(value: unknown, keys: ReadonlyArray): value is Array; } export declare function arrayOf(elementMatcher: Matcher): Matcher>;