declare const any: () => import("./matcher").MatcherFn;
declare const anyArray: () => import("./matcher").MatcherFn;
declare const anyBigInt: () => import("./matcher").MatcherFn;
declare const anyBoolean: () => import("./matcher").MatcherFn;
declare const anyFunction: () => import("./matcher").MatcherFn;
declare const anyNumber: () => import("./matcher").MatcherFn;
declare const anyObject: () => import("./matcher").MatcherFn;
declare const anyString: () => import("./matcher").MatcherFn;
declare const matchString: (regexp: RegExp) => import("./matcher").MatcherFn;
declare const partialObject: (o: unknown) => import("./matcher").MatcherFn;
export { any, anyArray, anyBigInt, anyBoolean, anyFunction, anyNumber, anyObject, anyString, matchString, partialObject };
