import type { MatchableTypes, MatchTypeFromString } from './matchType'; import type { TypeGuardFn } from './types'; type MatchTypeInFn = TypeGuardFn>; type MatchTypeIn = (types: Types) => MatchTypeInFn; /** * Given one or more type names as array, returns a Type Guard that checks if the type of the given value matches at least one of the given type names. * * @category Type Guard Creator */ declare const matchTypeIn: MatchTypeIn; export { matchTypeIn }; export type { MatchTypeIn, MatchTypeInFn };