/**
 * Set a given property of the target to be non-enumerable
 * Will not be listed on Object.keys and will be excluded by spread operator
 */
export declare const nonenumerable: (target: any, propertyKey: string) => void;
