import { behavior } from '@actor-system/core'; import { SupervisorStrategy } from './SupervisorStrategy.js'; interface Supervised { onFailure(strategy: SupervisorStrategy): behavior.Behavior; } declare const supervise: (inner: behavior.Behavior) => Supervised; export { supervise }; export type { Supervised };