declare type LiveStateMiddlewareConfig = { allowedActionTypes?: Set; disabledActionTypes?: Set; allowAction?: (action: any) => boolean; liveStateDataId?: string; }; export declare const createLiveStateMiddleware: (config?: LiveStateMiddlewareConfig) => { middleware: (store: any) => (next: any) => (action: any) => any; updateLiveStateDataId: (newId?: string) => void; updateAllowedActionTypes: (newAllowedActionTypes?: Set) => void; updateDisabledActionTypes: (newDisabledActionTypes?: Set) => void; updateAllowAction: (newAllowAction?: ((action: any) => boolean) | undefined) => void; }; export {};