/** * Type to add branding flavor */ type Flavoring = { _type?: TFlavor; }; export type FlavoredId = TBaseId & Flavoring; export declare class ID { private static ids; static get(): string; } export {};