/**
 * Huber loss layer
 */
export default class HuberLayer extends Layer {
    bind({ supervisor }: {
        supervisor: any;
    }): void;
    _t: any;
    calc(x: any): Matrix<T>;
    _i: any;
    _cond: any;
    grad(bo: any): any;
    _bi: any;
}
import Layer from './base.js';
import Matrix from '../../../util/matrix.js';
