import DocumentStore, { ObjectTypeDescriptor } from "ravendb"; import { AppRuntimeSettingEntity } from "src/lib/app-data-objects"; import { DocumentInterface } from "./document-interface"; export declare class AppRuntimeSettingsDocumentInterface extends DocumentInterface { constructor(documentStore: DocumentStore, descriptor: { class: ObjectTypeDescriptor; collection: string; }); getByNameAndUserId(name: string, userId?: string): Promise; getGlobalList(): Promise; getListByUserId(userId: string): Promise; }