import { b as ClientEventFrom, t as ActorKitClient, u as AnyActorKitStateMachine, v as CallerSnapshotFrom } from "./types-C31KX9CW.mjs"; import { Draft } from "immer"; //#region src/createActorKitMockClient.d.ts type ActorKitMockClientProps = { initialSnapshot: CallerSnapshotFrom; onSend?: (event: ClientEventFrom) => void; }; type ActorKitMockClient = ActorKitClient & { produce: (recipe: (draft: Draft>) => void) => void; }; declare function createActorKitMockClient(props: ActorKitMockClientProps): ActorKitMockClient; //#endregion export { createActorKitMockClient }; //# sourceMappingURL=test.d.mts.map