/** * State Module — Barrel Export * * Phase 2 of StorageProvider PRD (#481). * Typed facade layer over `.squad/` file-based state. */ export type { Agent, Decision, HistoryEntry, HistorySection, LogEntry, ModelTier, RoutingConfig, RoutingConfigRule, RoutingRule, SkillDefinition, SquadStateConfig, StateErrorKind, StorageProvider, TeamConfig, TeamMember, Template, WorkType, } from './domain-types.js'; export type { AgentStatus } from './domain-types.js'; export { StateError, NotFoundError, ParseError, WriteConflictError, ProviderError, } from './domain-types.js'; export type { CollectionEntityMap, CollectionName, AgentHandle, } from './collection-map.js'; export type { CollectionPathResolver } from './schema.js'; export { COLLECTION_PATHS, resolveCollectionPath } from './schema.js'; export { createAgentHandle } from './handles.js'; export { AgentsCollection, ConfigCollection, DecisionsCollection, LogCollection, RoutingCollection, SkillsCollection, TeamCollection, TemplatesCollection, } from './collections.js'; export type { ConfigFileData } from './collections.js'; export { SquadState } from './squad-state.js'; //# sourceMappingURL=index.d.ts.map