import { Predicate } from './Predicate.js'; /** * @desc * Ensures that the `value` is a plain {@link Object}. * Based on Jon Schlinkert's implementation. * * @see https://github.com/jonschlinkert/is-plain-object * * @example * import { ensure, isPlainObject } from 'tiny-types'; * * ensure('plain object', {}, isPlainObject()); * * @returns {Predicate} */ export declare function isPlainObject(): Predicate; //# sourceMappingURL=isPlainObject.d.ts.map