import { ActorRef, SnapshotFrom, StateMachine, StateValueFrom, NonReducibleUnknown, EventObject, MetaObject } from 'xstate'; import { Context as NavigationPanelActorContextFactory, Context as NavigationPanelActorContext, Events as NavigationPanelActorEvent, Input as NavigationPanelActorInput, Tags } from './actor.setup'; export type { NavigationPanelActorContext, NavigationPanelActorEvent, NavigationPanelActorInput, }; export type { BreadcrumbItem, DropdownColumnItem } from './actor.setup'; declare const _actorLogic: StateMachine; export interface NavigationPanelActorLogic extends StateMachine, Tags, NavigationPanelActorInput, any, any, any, any> { } export declare const navigationPanelActorLogic: NavigationPanelActorLogic; export type NavigationPanelActorSnapshot = SnapshotFrom; export interface NavigationPanelActorRef extends ActorRef { }