import { Blackboard } from '../blackboard/blackboard'; import { Playground } from '../state/playground'; import { Header } from '../types/header'; import { Entry } from '../types/entry'; import { CellContents } from '../types/cell'; export declare function checkConnection(url: string): Promise; export declare function connectToConductors(blackboard: Blackboard, conductorsUrls: string[]): Promise; export declare function getCellContents(call: any): Promise>; export declare function fetchCas(call: any, instance_id: string, address: string): Promise; export declare function getCellContent(call: any, instance_id: string): Promise; export declare function processStateDump(call: any, instanceId: string, stateDump: any): Promise; export declare function processHeader(header: any): Header; export declare function processEntry(dna: string, agent_id: string, entry: any): Entry; export declare function processLinkContent(link: string): { base: string; target: string; type: string; tag: string; };