import { ICreate, IObjectKeys, IStore } from './types'; declare let refState: IObjectKeys | any; declare let refFunctions: IObjectKeys | any; declare const functionRef: () => typeof refFunctions; declare const stateRef: () => typeof refState; declare const createStore: ({ stateInitial, request, deps, develop, logging, }: ICreate>) => IStore; export { createStore, functionRef, stateRef };