import { Joi } from '../helpers'; import type { IEvent } from './event'; export declare const NEW_EVENT = "EVENT/NEW_EVENT"; export declare const newEventActionSchema: Joi.ObjectSchema; export interface INewEventAction { type: typeof NEW_EVENT; payload: IEvent; } export declare const newEventAction: import("../helpers").IActionCreator;