declare const brand: unique symbol; export type Brand = T & { readonly [brand]: TBrand; }; export type EntityId = Brand; export type ResourceId = Brand; export type ToolId = Brand; export type PromptId = Brand; export type UserId = Brand; export type AgentId = Brand; export type SessionId = Brand; export type Slug = Brand; export type PageId = Brand; export type LayoutId = Brand; export type RequestId = Brand; export type ToolCallId = Brand; export type MessageId = Brand; export type AuthToken = Brand; export type CsrfToken = Brand; export type ApiKey = Brand; export type Unbrand = T extends Brand ? U : T; export {}; //# sourceMappingURL=branded.d.ts.map