/**
 * Supervisor layer
 */
export default class SupervisorLayer extends Layer {
    bind({ supervisor }: {
        supervisor: any;
    }): void;
    _o: any;
    calc(): any;
    grad(): void;
}
import Layer from './base.js';
