import { behavior } from '@actor-system/core'; /** * Creates a named version of a behavior using template literal syntax. * This is useful for debugging and behavior change tracking. */ declare const named: (strings: TemplateStringsArray, ...values: unknown[]) => >(targetBehavior: B) => B; export { named };