import { LitElement, PropertyValues } from 'lit-element'; import { Playground } from '../state/playground'; import { Cell } from '../types/cell'; declare const DHTShard_base: { new (...args: any[]): import("../blackboard/blackboard-connect").PinnedElement & LitElement & import("lit-element").Constructor; prototype: any; }; export declare class DHTShard extends DHTShard_base { private shardViewer; cell: { dna: string; agentId: string; }; private selectedCell; static style(): import("lit-element").CSSResult; getCell(): Cell; updated(changedValues: PropertyValues): void; render(): import("lit-element").TemplateResult; } export {};