/** * Checks if an object is empty (has no own properties) * @param object - The object to check * @returns true if the object is empty, false otherwise */ export declare const isEmpty: (object: Record) => boolean;