export type Store> = ReturnType>; export default function createStore(reducer: any, preloadedState: any): { getState: () => S; dispatch: (action: any) => void; subscribe: (listener: any) => () => void; };