import type { BehaviourState, BehaviourStateInitialiser } from './BehaviourState'; export interface BehaviourCellState extends BehaviourState { readonly get: () => T; readonly set: (newState: T) => void; readonly clear: () => void; readonly readState: () => any; } export declare const SetupBehaviourCellState: (initialState: T) => BehaviourStateInitialiser>; //# sourceMappingURL=BehaviourCellState.d.ts.map