import type { StartMethod } from './conversation'; import { Joi } from '../helpers'; export declare const STARTED = "DIALOGUE/STARTED"; export interface IStartedPayload { conversationId: string; organisationId: string; consoleId: string; startedOn: number; startMethod?: StartMethod; snapshotId?: string; faceId?: string; } export declare const startedPayloadSchema: Joi.ObjectSchema; export interface IStartedAction { type: typeof STARTED; payload: IStartedPayload; } export declare const startedActionSchema: Joi.ObjectSchema; export declare const started: import("../helpers").ITopicBoundActionCreator;