declare const pubSub: () => { pubsub: { handlers: ((store: Partial) => void)[]; subscribe(handler: (store: Partial) => void): void; unsubscribe(handler: (store: Partial) => void): void; notify(newStore: Partial): void; }; }; export default pubSub;