/** A string branded for a single durable identity domain. */ export type Branded = T & { readonly __brand: Brand; }; export type TaskboardProjectId = Branded; export type TaskboardTaskId = Branded; export type TaskboardCommentId = Branded; export type TaskboardRelationId = Branded; export type TaskboardClaimId = Branded; export type TaskboardActivityId = Branded; export type TaskboardAttachmentId = Branded; export type TaskboardWorkflowId = Branded; export type TaskboardAutomationId = Branded; export declare const ProjectId: (value: string) => TaskboardProjectId; export declare const TaskId: (value: string) => TaskboardTaskId; export declare const CommentId: (value: string) => TaskboardCommentId; export declare const RelationId: (value: string) => TaskboardRelationId; export declare const ClaimId: (value: string) => TaskboardClaimId; export declare const ActivityId: (value: string) => TaskboardActivityId; export declare const AttachmentId: (value: string) => TaskboardAttachmentId; export declare const WorkflowId: (value: string) => TaskboardWorkflowId; export declare const AutomationId: (value: string) => TaskboardAutomationId; //# sourceMappingURL=ids.d.ts.map