import { LitElement, PropertyValues } from "lit"; import { ZomeName } from "@holochain/client"; import { ZomeViewModel } from "./ZomeViewModel"; import { Cell, DnaId, DnaIdMap } from "@ddd-qc/cell-proxy"; declare const ZomeMultiElement_base: (abstract new (...args: any[]) => { _cells?: Cell[]; get cells(): Cell[]; get cell(): Cell; }) & typeof LitElement; export declare class ZomeMultiElement extends ZomeMultiElement_base { readonly defaultZomeName: ZomeName; constructor(defaultZomeName: ZomeName); _cells_via_context: Cell[]; protected _zomeName: ZomeName; get zomeName(): ZomeName; protected _zvms: DnaIdMap; private _consumers; private requestZvm; protected zvmUpdated(_cellAddress: DnaId, _newZvms: ZVM, _oldZvms?: ZVM): Promise; shouldUpdate(changedProperties: PropertyValues): boolean; } export {}; //# sourceMappingURL=ZomeMultiElement.d.ts.map