import type { AnyPrimitive, TypeGuardFn } from './types'; type MatchArrayFn = TypeGuardFn; type MatchArray = (array: readonly [...Arr]) => MatchArrayFn; /** * Given an array of primitives, returns a Type Guard that checks if the given value is like the array. * * @category Type Guard Creator */ declare const matchArray: MatchArray; export { matchArray }; export type { MatchArray, MatchArrayFn };