/**
 * Recursively check if the objects match.
 */
declare function deepMatches(target: any, pattern: any): boolean;
export default deepMatches;
