import { default as StateType } from './state-type'; declare function State(v: any): StateType; declare namespace State { var of: (v: C) => StateType; var get: (fn?: Function) => StateType; var put: (s: any) => StateType; } export default State;