import { Joi } from '../helpers'; import type { PersonType } from './personIdentified'; export declare const ATTENTION = "VISION/ATTENTION"; export interface IPersonAttentionPayload { snapshotId?: string; personType?: PersonType; faceId: string; } export declare const personAttentionPayloadSchema: Joi.ObjectSchema; export interface IPersonAttentionAction { type: typeof ATTENTION; payload: IPersonAttentionPayload; } export declare const personAttentionActionSchema: Joi.ObjectSchema; export declare const personAttention: import("../helpers").IActionCreator;