import { AnyAction } from 'redux';
import { SetAction } from './actions';
import { AppInfoStore } from './types';
export declare const defaultAppInfoStore: {
    hasCartPermission: boolean;
};
export default function appInfoReducer(state: AppInfoStore | undefined, action: SetAction | AnyAction): AppInfoStore;
