export = matchObject; /** * Matches `actual` with `expectation` * * @private * @param {*} actual A value to examine * @param {object} expectation An object with properties to match on * @param {object} matcher A matcher to use for comparison * @returns {boolean} Returns true when `actual` matches all properties in `expectation` */ declare function matchObject(actual: any, expectation: object, matcher: object): boolean;