import { DBDocument } from "./DocumentDAL"; export declare class SandBox { findElements: () => Promise; compareElements: (t1: T, t2: T) => number; maxSize: number; constructor(maxSize: number, findElements: () => Promise, compareElements: (t1: T, t2: T) => number); acceptNewSandBoxEntry(element: T, pubkey: string): Promise; getSandboxRoom(): Promise; }