declare type Matcher = unknown | MatcherFn;
declare type MatcherFn = (value: unknown) => boolean;
declare const match: (value: unknown, matcher: unknown) => boolean;
declare const defineMatcher: (f: MatcherFn) => MatcherFn;
export { Matcher, MatcherFn, defineMatcher, match };
