export declare class MemArray {
    array: Array<any>;
    length: number;
    constructor();
    push: (v: any) => void;
}
