import { Tensor } from './tensor'; export interface Model { load(): Promise; predict(input: Tensor): Tensor; dispose(): void; }