import { createReduxStore } from '@wordpress/data'; import * as actions from './actions'; import * as selectors from './selectors'; import { STORE_KEY } from './constants'; import type { DispatchFromMap, SelectFromMap } from '@quillforms/types'; declare const store: ReturnType; export default store; declare module '@wordpress/data' { function dispatch(key: typeof STORE_KEY): DispatchFromMap; function select(key: typeof STORE_KEY): SelectFromMap; function useSelect(selector: (customSelect: typeof select) => R, deps?: any[]): R; function useDispatch(key: typeof STORE_KEY): DispatchFromMap; } //# sourceMappingURL=index.d.ts.map