import { BundleStates, BundleState, BundleStateName } from './api/index.js'; import 'apprt-core/Types'; declare const UNINSTALLED: BundleStates["UNINSTALLED"]; declare const INSTALLED: BundleStates["INSTALLED"]; declare const RESOLVED: BundleStates["RESOLVED"]; declare const STARTING: BundleStates["STARTING"]; declare const STOPPING: BundleStates["STOPPING"]; declare const ACTIVE: BundleStates["ACTIVE"]; declare const RESOLVING: BundleStates["RESOLVING"]; declare const STATES: BundleStates; declare function stateName(value: BundleState): BundleStateName; declare function isRunningState(value: BundleState): boolean; export { ACTIVE, INSTALLED, RESOLVED, RESOLVING, STARTING, STATES, STOPPING, UNINSTALLED, STATES as default, isRunningState, stateName };