import Joi from 'joi'; import type { ISnapshotMeta } from './snapshotMeta'; export declare const SNAPSHOT_AVAILABLE = "VISION/SNAPSHOT_AVAILABLE"; interface ISnapshotAvailableActionPayload extends ISnapshotMeta { conversationId: string; name: string; url: string; } export declare type ISnapshot = ISnapshotAvailableActionPayload; export declare const snapshotAvailableActionSchema: Joi.ObjectSchema; export interface ISnapshotAvailableAction { type: typeof SNAPSHOT_AVAILABLE; payload: ISnapshotAvailableActionPayload; } export declare const snapshotAvailable: import("../helpers").IActionCreator; export {};