/**
* Checks if an objectis a plain JavaScript object.
*
* @param obj - The objectto check.
* @returns `true` if the objectis a plain JavaScript object, `false`
* otherwise.
*/
export declarefunction isPlainObject(obj: unknown): obj is Record<string, unknown>;