import { Playground } from './playground'; export declare const selectCellCount: (state: Playground) => number; export declare const selectActiveCells: (state: Playground) => import("../types/cell").Cell[]; export declare const selectGlobalDHTOps: (state: Playground) => number; export declare const selectHoldingCells: (state: Playground) => (entryId: string) => import("../types/cell").Cell[]; export declare const selectActiveConductor: (state: Playground) => import("../types/conductor").Conductor; export declare const selectActiveCell: (state: Playground) => import("../types/cell").Cell; export declare const selectUniqueDHTOps: (state: Playground) => number; export declare const selectEntryMetadata: (state: Playground) => (entryId: string) => import("../types/cell").EntryMetadata; export declare const selectActiveEntry: (state: Playground) => any; export declare const selectEntry: (state: Playground) => (entryId: string) => any; export declare const selectMedianHoldingDHTOps: (state: Playground) => any; export declare const selectAllDNAs: (state: Playground) => string[]; export declare const selectCell: (state: Playground) => (dna: string, agentId: string) => import("../types/cell").Cell;