import { Layer } from './Layer'; import { Tensor } from '@sapien/types'; export declare class Dense extends Layer { feedForward(d: Tensor): Tensor; }