export class b2GrowableStack {
    constructor(N: any);
    m_stack: null[];
    m_count: number;
    Reset(): b2GrowableStack;
    Push(element: any): void;
    Pop(): null;
    GetCount(): number;
}
