/**
 * Determines if the given value is an object.
 */
declare function isObject(value: any): value is Record<string, any>;

export { isObject };
