import { NodePath, Node } from '../types'; import { CompiledMatcher, CompileOptions } from '.'; export default function compileGenericArrayMatcher(path: NodePath | NodePath[], compileOptions: CompileOptions, { compileElemMatcher, defaultUnordered, skipElement, }?: { compileElemMatcher?: (path: NodePath, options: CompileOptions) => CompiledMatcher; defaultUnordered?: boolean; skipElement?: (path: NodePath) => boolean; }): CompiledMatcher;