import { Identifiable } from "./identifiable"; export declare class AbstractPool { protected pool: Map; add(t: T): this; find(s: string): T; }