/** * Module that analyzes existing results and recombines them into a unified person object */ import { Face, Body, Hand, Gesture, Person } from './result'; export declare function join(faces: Array, bodies: Array, hands: Array, gestures: Array, shape: Array | undefined): Array;