import * as tf from '../backend/adapter'; /** * Structural duck-type check so tensors from a foreign tf.js build * (where `instanceof tf.Tensor` would fail) are still recognised. */ export declare function is_tensor(value: unknown): value is tf.Tensor;