import type { AnyPrimitive, TypeGuard } from './types';
type MatchEitherFn = TypeGuard;
type MatchEither = (subjectA: A, subjectB: B) => MatchEitherFn;
declare const matchEither: MatchEither;
export { matchEither };
export type { MatchEitherFn, MatchEither };