/** * Container 函子 */ export declare class Container { value: T; constructor(value: T); static of(value: U): Container; map(callback: (arg: T) => R): Container; }