export { isPlainObject }; type PlainObject = Record; declare function isPlainObject(value: unknown): value is PlainObject;