/**
 * @name objectClear
 * @summary Removes all the keys from the input object
 */
export declare function objectClear<T>(value: Record<string, T>): Record<string, T>;
