import { AnyAction } from 'redux'; import { Store } from '../store'; export interface AppBridgeStore { appBridge: Store; } export declare function isPrivateAppAction(action: AnyAction): boolean; declare function appBridgeReducer(state: Store | undefined, action: AnyAction): Store; export default appBridgeReducer;