import { Auditor, JsonSchema, JsonStore } from "anbaric-tsapi"; declare class InMemoryJsonStore extends JsonStore { private documents; private schema?; constructor(auditor?: Auditor, schema?: JsonSchema, collection?: string); protected saveInternal(id: string, document: any): Promise; protected retrieveInternal(id: string): Promise; protected deleteInternal(id: string): Promise; protected listInternal(pageSize?: number, page?: number): Promise>; } export { InMemoryJsonStore }; //# sourceMappingURL=InMemoryJsonStore.d.ts.map