export { BehaviorInterceptor, intercept } from './intercept.js'; export { named } from './named.js'; export { ReceiveMessage, ReceiveSignal, receive, receiveMessage, receiveSignal } from './receive.js'; export { setup } from './setup.js'; export { supervise } from './supervision/supervise.js'; export { SupervisorStrategy, SupervisorStrategyContext } from './supervision/SupervisorStrategy.js'; export { NoSuchElementError, StashBuffer, StashOverflowError, UnstashOptions, withStash } from './with-stash.js'; export { Timers, withTimers } from './with-timers.js'; import { behavior, $restartBehavior } from '@actor-system/core'; declare const empty: behavior.EmptyBehavior & (() => behavior.EmptyBehavior); declare const restart: { (checkpoint: behavior.Behavior): behavior.RestartBehavior; _tag: typeof $restartBehavior; }; declare const same: behavior.SameBehavior & (() => behavior.SameBehavior); declare const stopped: behavior.StoppedBehavior & (() => behavior.StoppedBehavior); declare const unhandled: behavior.UnhandledBehavior & (() => behavior.UnhandledBehavior); export { empty, restart, same, stopped, unhandled };