import { ActorContext, behavior } from '@actor-system/core/internal'; interface Timers { startSingleTimer(key: PropertyKey, post: T, delay: number): void; cancel(key: PropertyKey): void; cancelAll(): void; } declare const withTimers: (factory: (timers: Timers, context: ActorContext) => behavior.Behavior) => behavior.FoldedBehavior; export { withTimers }; export type { Timers };