export declare class ConstArray { protected readonly limit: number; protected _array: T[]; constructor(limit: number); get items(): readonly T[]; in(item: T): void; out(index: number): void; }