import { Joi } from '../helpers'; import type { IInvitation } from './invitation'; export declare const CREATED: "INVITATIONS/CREATED"; export declare type ICreatedPayload = IInvitation; export interface ICreatedAction { type: typeof CREATED; payload: ICreatedPayload; } export declare const createdActionSchema: Joi.ObjectSchema; export declare const created: import("../helpers").ITopicBoundActionCreator;