import { Joi } from '../helpers'; import type { IInvitation } from './invitation'; export declare const UPDATED: "INVITATIONS/UPDATED"; export declare type IUpdatedPayload = IInvitation; export interface IUpdatedAction { type: typeof UPDATED; payload: IUpdatedPayload; } export declare const updatedActionSchema: Joi.ObjectSchema; export declare const updated: import("../helpers").ITopicBoundActionCreator;