export declare const createWatcher: <V>() => {
    subscribe: (key: string, cb: (value: V) => void) => () => void;
    dispatch: (key: string, value: V) => void;
};
