export declare class Stack {
    private _items;
    constructor(items?: Array<any>);
    get [Symbol.toStringTag](): string;
    push(element: any): any[];
    pop(): any;
    peek(): any;
    isEmpty(): boolean;
    get size(): number;
    toString(): string;
}
