/**
 * Delete an object's properties.
 *
 * @param obj The object to clear of properties.
 */
export declare function clear(obj: {
    [prop: string]: unknown;
}): void;
