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