/// import * as FlacksErrors from './misc/errors'; import { Action as FlacksAction } from './core/action'; import { Store as FlacksStore } from './core/store'; import { Bridge } from './core/bridge'; declare namespace Flacks { type Dispatcher = Bridge.Dispatcher; const Errors: typeof FlacksErrors; const Action: typeof FlacksAction; const Store: typeof FlacksStore; const connect: (store: FlacksStore.Store, transformState?: (prevState: any) => any) => (Component: any) => any; } export = Flacks;