import { Container } from "inversify"; import { RxDatabase } from "rxdb"; import { IUserManager, IUser } from '@narwhal/data-engine-utils'; export declare function createTestDB(): Promise; export declare class NullErrorAggregator { handleError(error: any, extra?: any): any; } export declare class MockUserManager implements IUserManager { selectedUser: IUser; userList: Array; networkLoading: boolean; selectUser(user_id: string): void; loadFromNetwork(): Promise; loadFromStorage(): Promise; } export declare function setupContainer(): { container: Container; }; export declare function setupMockSchemas(container: Container, modules?: string[]): Promise;