import type { AnyActorKitStateMachine, CallerSnapshotFrom } from "./types";
export { withActorKit } from "./withActorKit";
export interface ActorKitParameters<TMachine extends AnyActorKitStateMachine> {
    actorKit: {
        [K: string]: {
            [actorId: string]: CallerSnapshotFrom<TMachine>;
        };
    };
}
export type StoryWithActorKit<TMachine extends AnyActorKitStateMachine> = {
    parameters: ActorKitParameters<TMachine>;
};
//# sourceMappingURL=storybook.d.ts.map