export type DispatchType = (action: T) => void; export declare const _dispatchFuncs: { [id: string]: DispatchType; }; export declare function useGlobalDispatch(id: string, callback?: DispatchType): { dispatch: (action?: T) => void; };