export declare class FixedSizeStack { #private; constructor(maxLength: number); push(value: T): void; private dequeue; pop(): T | void; tail(): T | void; length(): number; }