import { Matcher } from './Matcher'; export declare class AnyListMatcher extends Matcher> { private readonly matchers; private readonly sliceMatchers; constructor(matchers: Array>); matchValue(array: unknown, keys: ReadonlyArray): array is Array; } export declare function anyList(...elements: Array>): Matcher>;