declare function push(id: string): void; declare function remove(id: string): void; export declare const zStack: { push: typeof push; remove: typeof remove; readonly top: string; readonly length: number; }; export {};