export default class Stack { private count; private items; constructor(); add(element: T): void; remove(): any; peek(): any; isEmpty(): boolean; size(): number; clear(): void; list(): any[]; }