import { AppRuntimeSettingEntity } from "src/lib/app-data-objects"; import { PgDocumentInterface } from "./pg-document-interface"; import { Repository } from "typeorm"; export declare class AppRuntimeSettingsPgDocumentInterface extends PgDocumentInterface { constructor(repository: Repository); getByNameAndUserId(name: string, userId?: string): Promise; getGlobalList(): Promise; getListByUserId(userId: string): Promise; }