declare const brand: unique symbol; export type Brand = K & { [brand]: T; }; export type HasBrand = T extends { [brand]: B; } ? true : false; export {};