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