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