export declare class Pointer { valueContainer: T[]; static of(value: T): Pointer; static empty(): Pointer; get(): T; assign(value: T): void; }