import { ActorContext, behavior } from '@actor-system/core/internal'; import { Bivariant } from './__bundle__/shared/dist/types.internal.js'; type SetupFactory = Bivariant<(context: ActorContext) => behavior.Behavior | void>; declare const setup: (factory: SetupFactory) => behavior.FoldedBehavior; export { setup }; export type { SetupFactory };