import { PhantomReducer, Subscription, PhantomAction } from "./types/phantomStore"; export default function createPhantomStore(reducer: PhantomReducer): { data: () => any; fire: (action: PhantomAction) => void; subscribe: (subscription: Subscription) => void; };