export declare class Pool { array: T[]; index: number; get current(): T; constructor(array: T[]); next(): T; }