declare const brand: unique symbol; export type Branded = T & { [brand]: B }; export type ShortId = Branded; export const asShortId = (value: string): ShortId => value as ShortId;