import * as tf from '@tensorflow/tfjs-core'; import { NetInput, NeuralNetwork, TNetInput } from 'tfjs-image-recognition-base'; import { FaceDetection } from '../classes/FaceDetection'; import { ISsdMobilenetv1Options } from './SsdMobilenetv1Options'; import { NetParams } from './types'; export declare class SsdMobilenetv1 extends NeuralNetwork { constructor(); forwardInput(input: NetInput): { boxes: tf.Tensor[]; scores: tf.Tensor[]; }; forward(input: TNetInput): Promise<{ boxes: tf.Tensor[]; scores: tf.Tensor[]; }>; locateFaces(input: TNetInput, options?: ISsdMobilenetv1Options): Promise; protected getDefaultModelName(): string; protected extractParamsFromWeigthMap(weightMap: tf.NamedTensorMap): { params: NetParams; paramMappings: import("tfjs-image-recognition-base/build/commonjs/common").ParamMapping[]; }; protected extractParams(weights: Float32Array): { params: NetParams; paramMappings: import("tfjs-image-recognition-base/build/commonjs/common").ParamMapping[]; }; }