import * as tf from '@tensorflow/tfjs-core'; import { BaseModel } from './base_model'; export declare class MobileNet extends BaseModel { preprocessInput(input: tf.Tensor3D): tf.Tensor3D; nameOutputResults(results: tf.Tensor3D[]): { offsets: tf.Tensor; segmentation: tf.Tensor; partHeatmaps: tf.Tensor; longOffsets: tf.Tensor; heatmap: tf.Tensor; displacementFwd: tf.Tensor; displacementBwd: tf.Tensor; partOffsets: tf.Tensor; }; }