import { TensorasTensor } from'./tensor';
declaretypeNonTensorType = never;
/**
* Type OnnxValue Represents both tensors and non-tensors value for model's inputs/outputs.
*
* NOTE: currently not support non-tensor
*/exportdeclaretypeOnnxValue = Tensor | NonTensorType;
export {};