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