interface PoolMemberInterface { get(): T; adopt(target: T): void; release(): void; dispose(): void; } export { PoolMemberInterface as default };