/** * Matches `actual` with `expectation` * * @private * @param {unknown} 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: unknown, expectation: object, matcher: object): boolean; export = matchObject;