/** * Determines if the value is a dictionary-type object * @param object - Value to check * @returns {boolean} true if the value is a dictionary object, false otherwise * @example isDictionaryObject({}); // true * isDictionaryObject([]); // false */ export declare const isDictionaryObject: (object: unknown) => object is T;