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