import { CouchdbService } from '~backend/couchdb/couchdb.service'; import { LayoutService as CoreLayoutService } from '~core/modules/layout'; import { LayoutDoc } from './layout.model'; export declare class LayoutService { private readonly couchdbService; core: CoreLayoutService; constructor(couchdbService: CouchdbService); all(): Promise; createLayout(layout: LayoutDoc, name: string): Promise; updateLayout(layout: LayoutDoc): Promise; }