export declare type ActionType = string | number;
export default class Action {
    type: ActionType;
    toPlainObject(): any;
}
