import * as tf from '@tensorflow/tfjs'; export declare class ModelWeights { private frozenModel; constructor(frozenModel: tf.FrozenModel); weights(layerName: string): tf.Tensor; convBias(layerName: string, doublePrefix?: boolean): tf.Tensor; depthwiseBias(layerName: string): tf.Tensor; depthwiseWeights(layerName: string): tf.Tensor; private getVariable; dispose(): void; }