import { DType, Tensor } from '../../../library'; import { BackwardOp, VariableI } from '../../types'; export declare class LogBack implements BackwardOp { input: VariableI; constructor(input: VariableI); backward(grad: Tensor): void; delete(): void; }