import { ImageId } from "../types"; import { JsonSerializable } from "../json-serializable"; export declare class ImagePool implements JsonSerializable { private readonly imageIds; constructor(imageId: ImageId); getImageIds(): Set; contains(imageId: ImageId): boolean; asJson(): any; }