import { Joi } from '../helpers'; export declare const CHECK_IN: "INVITATIONS/CHECK_IN"; export interface ICheckInPayload { invitationId: string; conversationId: string; checkInTime: number; } export interface ICheckInAction { type: typeof CHECK_IN; payload: ICheckInPayload; } export declare const checkInActionSchema: Joi.ObjectSchema; export declare const checkIn: import("../helpers").ITopicBoundActionCreator;