import { Action as BaseAction } from 'redux';
import { AppInfoStore } from './types';
export declare const SET_APP_INFO = "PRIVATE_APP::APP_INFO::SET";
export interface SetAction extends BaseAction {
    readonly type: typeof SET_APP_INFO;
    readonly payload: AppInfoStore;
}
export declare function set(payload: AppInfoStore): SetAction;
