export interface BehaviourState { /** This is for debug purposes only, and only used by the Alloy Inspector Chrome Plugin */ readState: () => any; } export interface BehaviourStateInitialiser { init: (config: C) => S; } declare const NoState: BehaviourStateInitialiser; export interface Stateless extends BehaviourState { } declare const nu: (spec: T) => T; export { nu as nuState, NoState }; //# sourceMappingURL=BehaviourState.d.ts.map