export declare class Stack { private _store; private top; constructor(); clear(): void; peek(): T; pop(): T; push(el: T): void; isEmpty(): boolean; }