export declare class Box { #private; constructor(boxed: T); leak(): T; } export declare function box(boxed: T): Box;