import { Joi } from '../helpers'; import type { PersonType } from './personIdentified'; export declare const NEW_FACE: "VISION/NEW_FACE"; export interface INewFaceActionPayload { faceId: string; faceToken: string; organisationId: string; type: PersonType; staffId?: string; visitorId?: string; } export interface INewFaceAction { type: typeof NEW_FACE; payload: INewFaceActionPayload; } export declare const newFaceActionSchema: Joi.ObjectSchema; export declare const newFace: import("../helpers").ITopicBoundActionCreator;