import { Tensor } from '@sapien/types'; export declare abstract class Layer { abstract feedForward(data: Tensor): Tensor; }