export class b2StackQueue {
    constructor(capacity: any);
    m_buffer: any[];
    m_front: number;
    m_back: number;
    get m_capacity(): number;
    Push(item: any): void;
    Pop(): void;
    Empty(): boolean;
    Front(): any;
}
