export interface IBox { (target: T): { get(): T; set(value: T): void; }; } export declare const box: IBox;