export declare class Box { private value; get [Symbol.toStringTag](): string; constructor(value: T); set(value: T): void; get(): T; }