/** Deterministic UUID fixtures. Deliberately absent from the package barrel. */ import type { ActivityId, AdvisoryCallId, AdvisoryId, AgentId, AuditEventId, CheckpointId, ChunkId, ConnectorId, ConnectorInstanceId, CredentialId, DeliverableId, DocumentId, EnvironmentId, ExecutionContextId, HandoffId, KnowledgeBaseId, KnowledgeBaseRef, LockId, MCPClientId, MCPServerId, MCPSessionId, MemoryId, MemoryStoreRef, MessageId, PlanId, PluginId, ProjectId, RecordId, SandboxId, SessionId, SubSessionId, SummaryId, TaskId, TenantId, ToolCallId, TopicId, TurnId, UserId, VaultRef, WorkspaceId } from '../types/ids/index.js'; /** Casts without checking. The name is the warning. */ export declare function unchecked(value: string): T; /** Maps a readable fixture label to a stable, valid UUID without global state. */ export declare function fixtureUuid(label: string): string; /** * One entry per entity type, keyed by the bare concept rather than the * type name — `fixtureId.turn('a')`, not `fixtureId.TurnId('a')`. */ export declare const fixtureId: { readonly turn: (suffix: string) => TurnId; readonly record: (suffix: string) => RecordId; readonly message: (suffix: string) => MessageId; readonly session: (suffix: string) => SessionId; readonly toolCall: (suffix: string) => ToolCallId; readonly activity: (suffix: string) => ActivityId; readonly task: (suffix: string) => TaskId; readonly plan: (suffix: string) => PlanId; readonly knowledgeBase: (suffix: string) => KnowledgeBaseId; readonly document: (suffix: string) => DocumentId; readonly chunk: (suffix: string) => ChunkId; readonly connector: (suffix: string) => ConnectorId; readonly connectorInstance: (suffix: string) => ConnectorInstanceId; readonly tenant: (suffix: string) => TenantId; readonly credential: (suffix: string) => CredentialId; readonly executionContext: (suffix: string) => ExecutionContextId; readonly mCPServer: (suffix: string) => MCPServerId; readonly mCPClient: (suffix: string) => MCPClientId; readonly mCPSession: (suffix: string) => MCPSessionId; readonly environment: (suffix: string) => EnvironmentId; readonly checkpoint: (suffix: string) => CheckpointId; readonly lock: (suffix: string) => LockId; readonly advisory: (suffix: string) => AdvisoryId; readonly advisoryCall: (suffix: string) => AdvisoryCallId; readonly memory: (suffix: string) => MemoryId; readonly plugin: (suffix: string) => PluginId; readonly sandbox: (suffix: string) => SandboxId; readonly auditEvent: (suffix: string) => AuditEventId; readonly user: (suffix: string) => UserId; readonly agent: (suffix: string) => AgentId; readonly memoryStoreRef: (suffix: string) => MemoryStoreRef; readonly vaultRef: (suffix: string) => VaultRef; readonly knowledgeBaseRef: (suffix: string) => KnowledgeBaseRef; readonly project: (suffix: string) => ProjectId; readonly topic: (suffix: string) => TopicId; readonly subSession: (suffix: string) => SubSessionId; readonly handoff: (suffix: string) => HandoffId; readonly workspace: (suffix: string) => WorkspaceId; readonly summary: (suffix: string) => SummaryId; readonly deliverable: (suffix: string) => DeliverableId; }; //# sourceMappingURL=ids.d.ts.map